-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXLException.h
79 lines (70 loc) · 1.61 KB
/
XLException.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#pragma once
#ifdef _MSC_VER
#endif
#include <string>
#include <typeinfo>
#include <iostream>
#include <sstream>
//UTF-8 BOMいれた...
//
class XLException : public std::exception {
protected:
std::string message; //
int code; //std::exceptionがなぜか保持してくれないので自分で保持する.
public:
XLException() : code(0)
{
}
XLException(const std::string & message , int code)
: std::exception() , message(message) , code(code)
{
}
XLException(const std::string & message)
: std::exception() , message(message) , code(0)
{
}
XLException(const XLException& error)
: std::exception()
{
this->message = error.message;
this->code = error.code;
}
XLException(const XLException& error,const std::string & message)
: std::exception()
{
this->message = message + error.message;
this->code = error.code;
}
XLException(const XLException& error,const std::string & message,int code)
: std::exception()
{
this->message = message + error.message;
this->code = code;
}
virtual ~XLException() throw()
{
}
virtual int getErrorCode() const
{
return this->code;
}
virtual std::string getErrorMessage() const
{
return this->message;
}
virtual std::string getFullErrorMessage() const
{
std::stringstream out;
out << this->code << " " << this->message;
return out.str();
}
static std::string StringErrNo();
#if _MSC_VER
static std::string StringWindows();
#endif
static std::string StringErrNo(int errorno);
#if _MSC_VER
static std::string StringWindows(unsigned long errorno );
#endif
};