Kea  1.9.9-git
exceptions/exceptions.h
Go to the documentation of this file.
1 // Copyright (C) 2009-2019 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef EXCEPTIONS_H
8 #define EXCEPTIONS_H 1
9 
10 #include <stdexcept>
11 #include <string>
12 #include <sstream>
13 
14 namespace isc {
15 
23 class Exception : public std::exception {
24 public:
28 
29  Exception(const char* file, size_t line, const char* what);
36 
43  Exception(const char* file, size_t line, const std::string& what);
44 
46  virtual ~Exception() throw() {}
48 private:
52  void operator=(const Exception& src);
53 
54 public:
58 
59  virtual const char* what() const throw();
66 
75  virtual const char* what(bool verbose) const throw();
77 
81 
82  const std::string& getMessage() const { return (what_); }
86 
90  const char* getFile() const { return (file_); }
91 
95  size_t getLine() const { return (line_); }
97 
98 private:
99 
101  const char* const file_;
102 
104  size_t line_;
105 
107  const std::string what_;
108 
110  std::string verbose_what_;
111 };
112 
115 class OutOfRange : public Exception {
116 public:
117  OutOfRange(const char* file, size_t line, const char* what) :
118  isc::Exception(file, line, what) {}
119 };
120 
124 class InvalidParameter : public Exception {
125 public:
126  InvalidParameter(const char* file, size_t line, const char* what) :
127  isc::Exception(file, line, what) {}
128 };
129 
132 class BadValue : public Exception {
133 public:
134  BadValue(const char* file, size_t line, const char* what) :
135  isc::Exception(file, line, what) {}
136 };
137 
143 class InvalidOperation : public Exception {
144 public:
145  InvalidOperation(const char* file, size_t line, const char* what) :
146  isc::Exception(file, line, what) {}
147 };
148 
153 class Unexpected : public Exception {
154 public:
155  Unexpected(const char* file, size_t line, const char* what) :
156  isc::Exception(file, line, what) {}
157 };
158 
166 class NotImplemented : public Exception {
167 public:
168  NotImplemented(const char* file, size_t line, const char* what) :
169  isc::Exception(file, line, what) {}
170 };
171 
175 class NotFound : public Exception {
176 public:
177  NotFound(const char* file, size_t line, const char* what) :
178  isc::Exception(file, line, what) {}
179 };
180 
202 #define isc_throw(type, stream) \
203  do { \
204  std::ostringstream oss__; \
205  oss__ << stream; \
206  throw type(__FILE__, __LINE__, oss__.str().c_str()); \
207  } while (1)
208 
212 #define isc_throw_1(type, stream, param1) \
213  do { \
214  std::ostringstream oss__; \
215  oss__ << stream; \
216  throw type(__FILE__, __LINE__, oss__.str().c_str(), param1); \
217  } while (1)
218 
222 #define isc_throw_2(type, stream, param1, param2) \
223  do { \
224  std::ostringstream oss__; \
225  oss__ << stream; \
226  throw type(__FILE__, __LINE__, oss__.str().c_str(), param1, param2); \
227  } while (1)
228 
232 #define isc_throw_3(type, stream, param1, param2, param3) \
233  do { \
234  std::ostringstream oss__; \
235  oss__ << stream; \
236  throw type(__FILE__, __LINE__, oss__.str().c_str(), param1, param2,\
237  param3); \
238  } while (1)
239 
243 #define isc_throw_4(type, stream, param1, param2, param3, param4) \
244  do { \
245  std::ostringstream oss__; \
246  oss__ << stream; \
247  throw type(__FILE__, __LINE__, oss__.str().c_str(), param1, param2,\
248  param3, param4); \
249  } while (1)
250 
251 }
252 #endif // EXCEPTIONS_H
253 
254 // Local Variables:
255 // mode: c++
256 // End:
A generic exception that is thrown when a function is not implemented.
BadValue(const char *file, size_t line, const char *what)
A generic exception that is thrown if a parameter given to a method or function is considered invalid...
OutOfRange(const char *file, size_t line, const char *what)
NotFound(const char *file, size_t line, const char *what)
STL namespace.
InvalidOperation(const char *file, size_t line, const char *what)
NotImplemented(const char *file, size_t line, const char *what)
const std::string & getMessage() const
Gets a string describing the cause of the exception.
virtual ~Exception()
The destructor.
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
A generic exception that is thrown when an unexpected error condition occurs.
Exception(const char *file, size_t line, const char *what)
Constructor for a given type for exceptions with file name and file line number.
size_t getLine() const
Gets the line number of the file where the exception was thrown.
const char * getFile() const
Gets the file name where the exception was thrown.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
Unexpected(const char *file, size_t line, const char *what)
This is a base class for exceptions thrown from the DNS library module.
InvalidParameter(const char *file, size_t line, const char *what)
Defines the logger used by the top-level component of kea-dhcp-ddns.
A generic exception that is thrown if a function is called in a prohibited way.
A generic exception that is thrown if a parameter given to a method would refer to or modify out-of-r...
A generic exception that is thrown when an object can not be found.