icinga2/base/exception.h

90 lines
1.5 KiB
C
Raw Normal View History

#ifndef EXCEPTION_H
#define EXCEPTION_H
namespace icinga
{
2012-04-22 16:45:31 +02:00
/**
* Exception
*
* Base class for all exceptions.
*/
class I2_BASE_API Exception
{
private:
string m_Message;
2012-04-22 16:45:31 +02:00
protected:
void SetMessage(string message);
2012-04-22 16:45:31 +02:00
public:
Exception(void);
Exception(const string& message);
2012-04-22 16:45:31 +02:00
/**
* ~Exception
*
* Required for RTTI.
*/
virtual ~Exception(void)
{
}
string GetMessage(void) const;
};
#define DEFINE_EXCEPTION_CLASS(klass) \
class klass : public Exception \
{ \
public: \
inline klass(void) : Exception() \
{ \
} \
\
inline klass(const string& message) : Exception(message) \
{ \
} \
};
2012-04-16 16:27:41 +02:00
DEFINE_EXCEPTION_CLASS(NotImplementedException);
DEFINE_EXCEPTION_CLASS(InvalidArgumentException);
2012-04-22 16:45:31 +02:00
#ifdef _WIN32
class Win32Exception : public Exception
{
public:
inline Win32Exception(const string& message, int errorCode)
{
SetMessage(message + ": " + FormatErrorCode(errorCode));
}
static string FormatErrorCode(int code);
};
#endif /* _WIN32 */
class PosixException : public Exception
{
public:
inline PosixException(const string& message, int errorCode)
{
SetMessage(message + ": " + FormatErrorCode(errorCode));
}
static string FormatErrorCode(int code);
};
class OpenSSLException : public Exception
{
public:
inline OpenSSLException(const string& message, int errorCode)
{
SetMessage(message + ": " + FormatErrorCode(errorCode));
}
static string FormatErrorCode(int code);
};
2012-04-16 16:27:41 +02:00
}
#endif /* EXCEPTION_H */