#include <error.hpp>


Public Member Functions | |
Creators | |
| Error (int code) | |
| Constructor taking only an error code. | |
| template<typename A > | |
| Error (int code, const A &arg1) | |
| Constructor taking an error code and one argument. | |
| template<typename A , typename B > | |
| Error (int code, const A &arg1, const B &arg2) | |
| Constructor taking an error code and two arguments. | |
| template<typename A , typename B , typename C > | |
| Error (int code, const A &arg1, const B &arg2, const C &arg3) | |
| Constructor taking an error code and three arguments. | |
| virtual | ~Error () throw () |
| Virtual destructor. (Needed because of throw()). | |
Accessors | |
| virtual int | code () const throw () |
| Return the error code. | |
| virtual const char * | what () const throw () |
| Return the error message. The pointer returned by what() is valid only as long as the Error object exists. | |
addmoddel.cpp, exifprint.cpp, iptcprint.cpp, and xmpsample.cpp.
1.5.9