00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4EventEndException.h"
00017
00018 #include "Go4Log/TGo4Log.h"
00019
00020 TGo4EventEndException::TGo4EventEndException (TGo4EventSource* eventsource)
00021 : TGo4EventSourceException(eventsource)
00022 {
00023 TRACE((16,"TGo4EventEndException::TGo4EventEndException (TGo4EventSource*)", __LINE__, __FILE__));
00024 fxDescription= " Go4 End Of Eventsource Exception ";
00025
00026 }
00027
00028 TGo4EventEndException::TGo4EventEndException(const TGo4EventEndException &right)
00029 :TGo4EventSourceException(right)
00030 {
00031 TRACE((16,"TGo4EventEndException::TGo4EventEndException(right)", __LINE__, __FILE__)); ;
00032
00033 }
00034
00035 TGo4EventEndException & TGo4EventEndException::operator= (const TGo4EventEndException & right)
00036 {
00037 TRACE((16,"TGo4EventEndException::operator=",__LINE__, __FILE__));
00038 if (&right!=this)
00039 {
00040 TGo4EventSourceException::operator=(right);
00041
00042 return *this;
00043 }
00044 else
00045 {
00046
00047 return *this;
00048 }
00049 }
00050
00051 TGo4EventEndException::~TGo4EventEndException()
00052 {
00053 TRACE((16,"TGo4EventEndException::~TGo4EventEndException()", __LINE__, __FILE__));
00054 }
00055
00056