00001 #ifndef _T_EXCEPTION_HH 00002 #define _T_EXCEPTION_HH 00003 00004 #include "TString.hh" 00005 00012 class TException 00013 { 00014 public: 00015 00019 TException () { } 00020 00024 TException (const TString& str) : message (str) { } 00025 00029 void Print (); 00030 00034 TString message; 00035 }; 00036 00037 #endif // _T_EXCEPTION_HH