2001-10-06 14:13:28 +00:00
|
|
|
#ifndef XBASE_H
|
|
|
|
#define XBASE_H
|
|
|
|
|
|
|
|
#include "CString.h"
|
2002-06-01 19:26:11 +00:00
|
|
|
#include "stdpre.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include <exception>
|
2002-06-01 19:26:11 +00:00
|
|
|
#include "stdpost.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
class XBase : public std::exception {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-10-06 14:13:28 +00:00
|
|
|
XBase();
|
|
|
|
XBase(const CString& msg);
|
|
|
|
virtual ~XBase();
|
|
|
|
|
|
|
|
// std::exception overrides
|
|
|
|
virtual const char* what() const;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
protected:
|
2001-10-06 14:13:28 +00:00
|
|
|
// returns a human readable string describing the exception
|
|
|
|
virtual CString getWhat() const throw() = 0;
|
|
|
|
|
|
|
|
// look up a message and format it
|
|
|
|
virtual CString format(const char* id,
|
2002-06-10 22:06:45 +00:00
|
|
|
const char* defaultFormat, ...) const throw();
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
mutable CString m_what;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MXErrno {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-10-06 14:13:28 +00:00
|
|
|
MXErrno();
|
|
|
|
MXErrno(int);
|
|
|
|
|
|
|
|
// manipulators
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
|
|
|
|
int getErrno() const;
|
|
|
|
const char* getErrstr() const;
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
int m_errno;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|