12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- // Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #ifndef DATASRC_EXCEPTIONS_H
- #define DATASRC_EXCEPTIONS_H 1
- #include <exceptions/exceptions.h>
- namespace isc {
- namespace datasrc {
- /// \brief Top level exception related to data source.
- ///
- /// This exception is the most generic form of exception for errors or
- /// unexpected events that can happen in the data source module. In general,
- /// if an application needs to catch these conditions explicitly, it should
- /// catch more specific exceptions derived from this class; the severity
- /// of the conditions will vary very much, and such an application would
- /// normally like to behave differently depending on the severity.
- class DataSourceError : public Exception {
- public:
- DataSourceError(const char* file, size_t line, const char* what) :
- isc::Exception(file, line, what) {}
- };
- /// \brief No such serial number when obtaining difference iterator
- ///
- /// Thrown if either the zone/start serial number or zone/end serial number
- /// combination does not exist in the differences table. (Note that this
- /// includes the case where the differences table contains no records related
- /// to that zone.)
- class NoSuchSerial : public DataSourceError {
- public:
- NoSuchSerial(const char* file, size_t line, const char* what) :
- DataSourceError(file, line, what) {}
- };
- /// \brief A specified zone does not exist in the specified data source.
- ///
- /// This exception is thrown from methods that take a zone name and perform
- /// some action regarding that zone on the corresponding data source.
- class NoSuchZone : public DataSourceError {
- public:
- NoSuchZone(const char* file, size_t line, const char* what) :
- DataSourceError(file, line, what) {}
- };
- /// \brief An error indicating a zone is recognized but its content is not
- /// available.
- ///
- /// This generally indicates a condition that there's an error in the zone
- /// content and it's not successfully loaded.
- class EmptyZone : public DataSourceError {
- public:
- EmptyZone(const char* file, size_t line, const char* what) :
- DataSourceError(file, line, what) {}
- };
- /// Base class for a number of exceptions that are thrown while working
- /// with zones.
- struct ZoneException : public Exception {
- ZoneException(const char* file, size_t line, const char* what) :
- Exception(file, line, what)
- {}
- };
- /// Base class for a number of exceptions that are thrown when zones are
- /// being loaded. This is a recoverable exception. It should be possible
- /// to skip the bad zone and continue loading/serving other zones.
- struct ZoneLoaderException : public ZoneException {
- ZoneLoaderException(const char* file, size_t line, const char* what) :
- ZoneException(file, line, what)
- {}
- };
- } // namespace datasrc
- } // namespace isc
- #endif // DATASRC_EXCEPTIONS
- // Local Variables:
- // mode: c++
- // End:
|