casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ASDM2MSException.h
Go to the documentation of this file.
1 #ifndef ASDM2MSEXCEPTION
2 #define ASDM2MSEXCEPTION
3 
4 //
5 // A class to describe ASDM2MS Exceptions.
6 //
8 public:
13 
18  ASDM2MSException(string m);
19 
23  virtual ~ASDM2MSException();
24 
29  string getMessage() const;
30 
31 protected:
32  string message;
33 
34 };
35 
36 inline ASDM2MSException::ASDM2MSException() : message ("ASDM2MSException") {}
37 inline ASDM2MSException::ASDM2MSException(string m) : message(m) {}
39 inline string ASDM2MSException::getMessage() const {
40  return "ASDM2MSException : " + message;
41 }
42 
43 #endif
ASDM2MSException()
An empty contructor.
A class to describe ASDM2MS Exceptions.
virtual ~ASDM2MSException()
The destructor.
string getMessage() const
Returns the message associated to this exception.