libepp_nicbr
EppException.H
Go to the documentation of this file.
1 /* ${copyright}$ */
2 /* $Id: EppException.H 1086 2010-12-10 13:07:28Z eduardo $ */
7 #ifndef __EPP_EXCEPTION_H__
8 #define __EPP_EXCEPTION_H__
9 
10 #include "libepp_nicbr.H"
11 
12 #include "GeneralException.H"
13 
14 LIBEPP_NICBR_NS_BEGIN
15 
18 {
19 public:
22  INVALID_CLTRID = 2000
23  };
24 
26 
30  EppException(const int code, const string &msg) :
31  GeneralException(code, msg) {};
32 
33 
34 };
35 
36 LIBEPP_NICBR_NS_END
37 #endif //__EPP_EXCEPTION_H__
ExceptionCode
EPP Exception Code.
Definition: EppException.H:21
Project defines.
General Exception Class.
Definition: GeneralException.H:19
General Exception Class.
EppException(const int code, const string &msg)
Constructor.
Definition: EppException.H:30
EPP Exception Class.
Definition: EppException.H:17