1 /*
2  *
3  *  C++ Portable Types Library (PTypes)
4  *  Version 2.1.1  Released 27-Jun-2007
5  *
6  *  Copyright (C) 2001-2007 Hovik Melikyan
7  *
8  *  http://www.melikyan.com/ptypes/
9  *
10  */
11 
12 #include "ptypes.h"
13 
14 
15 PTYPES_BEGIN
16 
17 
exception(const char * imsg)18 exception::exception(const char* imsg)
19     : message(imsg)
20 {
21 }
22 
23 
exception(const string & imsg)24 exception::exception(const string& imsg)
25     : message(imsg)
26 {
27 }
28 
29 
~exception()30 exception::~exception()
31 {
32 }
33 
34 
35 PTYPES_END
36