00001 // ===================================================================== 00002 // $Id: TException.hh,v 1.2 2003/07/30 16:21:21 goiwai Exp $ 00003 // $Name: CLDAQ-1-07-00 $ 00004 // 00005 // $Log: TException.hh,v $ 00006 // Revision 1.2 2003/07/30 16:21:21 goiwai 00007 // ファイルにコミットログをつけることにしました. 00008 // 00009 // ===================================================================== 00010 #ifndef __TEXCEPTION_HH 00011 #define __TEXCEPTION_HH 00012 00013 #include "Tglobals.h" 00014 00015 class TException 00016 { 00017 00018 private: 00019 //Tstring theMessage; 00020 //Tint theErrorNumber; 00021 //TSystemLogging theLogger; 00022 00023 public: 00024 TException(); 00025 //TException( const Tstring& message ); 00026 //TException( const Tstring& message, Tint err ); 00027 TException( const TException& right ); 00028 ~TException(); 00029 00030 //Tvoid Terminate 00031 //Tvoid Logging with SystemLogging 00032 00033 }; 00034 00035 #endif