Place util exceptions in the util namespace
This commit is contained in:
parent
c6a3831840
commit
6e82915975
@ -25,6 +25,7 @@
|
||||
#include <cerrno>
|
||||
|
||||
using namespace std;
|
||||
using namespace util;
|
||||
|
||||
|
||||
/// Construct an errno_error from a given error value. The error value MUST signal an error at
|
||||
|
63
except.hpp
63
except.hpp
@ -26,51 +26,52 @@
|
||||
#include <stdexcept>
|
||||
|
||||
|
||||
class input_error : public std::runtime_error {
|
||||
public:
|
||||
input_error (const std::string &_what):
|
||||
namespace util {
|
||||
class input_error : public std::runtime_error {
|
||||
public:
|
||||
input_error (const std::string &_what):
|
||||
runtime_error (_what)
|
||||
{ ; }
|
||||
};
|
||||
{ ; }
|
||||
};
|
||||
|
||||
|
||||
class unavailable_error : public std::runtime_error {
|
||||
public:
|
||||
unavailable_error (const std::string &_what):
|
||||
runtime_error (_what)
|
||||
{ ; }
|
||||
};
|
||||
class unavailable_error : public std::runtime_error {
|
||||
public:
|
||||
unavailable_error (const std::string &_what):
|
||||
runtime_error (_what)
|
||||
{ ; }
|
||||
};
|
||||
|
||||
|
||||
/// An exception class used for reporting errors signalled by errno.
|
||||
class errno_error : public std::runtime_error {
|
||||
public:
|
||||
int id;
|
||||
errno_error (int _errno);
|
||||
errno_error ();
|
||||
/// An exception class used for reporting errors signalled by errno.
|
||||
class errno_error : public std::runtime_error {
|
||||
public:
|
||||
int id;
|
||||
errno_error (int _errno);
|
||||
errno_error ();
|
||||
|
||||
static void try_code (void);
|
||||
static void try_code (int code);
|
||||
static void try_code (void);
|
||||
static void try_code (int code);
|
||||
|
||||
static void throw_code (void);
|
||||
static void throw_code (int code);
|
||||
};
|
||||
static void throw_code (void);
|
||||
static void throw_code (int code);
|
||||
};
|
||||
|
||||
|
||||
#if defined(PLATFORM_WIN32)
|
||||
#include <windows.h>
|
||||
|
||||
class win32_error : public std::runtime_error {
|
||||
public:
|
||||
DWORD id;
|
||||
class win32_error : public std::runtime_error {
|
||||
public:
|
||||
DWORD id;
|
||||
|
||||
win32_error (DWORD _id);
|
||||
win32_error ();
|
||||
win32_error (DWORD _id);
|
||||
win32_error ();
|
||||
|
||||
static void try_code (void);
|
||||
static void throw_code (void);
|
||||
};
|
||||
static void try_code (void);
|
||||
static void throw_code (void);
|
||||
};
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user