libepp_nicbr
IoException.H
1 /* ${copyright}$ */
2 /* $Id: IoException.H 1086 2010-12-10 13:07:28Z eduardo $ */
7 #ifndef __IO_EXCEPTION_H__
8 #define __IO_EXCEPTION_H__
9 
10 #include "libepp_nicbr.H"
11 
12 #include "GeneralException.H"
13 
14 LIBEPP_NICBR_NS_BEGIN
15 
18 {
19 public:
22  OPEN_ERR = 4000,
23  READ_ERR = 4001,
24  CLOSE_ERR = 4003
25  };
26 
28 
32  IoException(const int code, const string &msg) :
33  GeneralException(code, msg) {};
34 
35 
36 };
37 
38 LIBEPP_NICBR_NS_END
39 #endif //__IO_EXCEPTION_H__
Project defines.
ExceptionCode
IO Exception Code.
Definition: IoException.H:21
General Exception Class.
Definition: GeneralException.H:19
General Exception Class.
IO Exception Class.
Definition: IoException.H:17
IoException(const int code, const string &msg)
Constructor.
Definition: IoException.H:32