Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4EventTimeoutException.h"
00015
00016 #include "TGo4Log.h"
00017
00018 TGo4EventTimeoutException::TGo4EventTimeoutException (TGo4EventSource* eventsource)
00019 : TGo4EventSourceException(eventsource)
00020 {
00021 GO4TRACE((16,"TGo4EventTimeoutException::TGo4EventTimeoutException (TGo4EventSource*)", __LINE__, __FILE__));
00022 fxDescription= "!!!-- Go4 TaskHandler Event Timeout Exception --!!!";
00023 }
00024
00025 TGo4EventTimeoutException::TGo4EventTimeoutException(const TGo4EventTimeoutException &right)
00026 :TGo4EventSourceException(right)
00027 {
00028 GO4TRACE((16,"TGo4EventTimeoutException::TGo4EventTimeoutException(right)", __LINE__, __FILE__)); ;
00029 }
00030
00031 TGo4EventTimeoutException & TGo4EventTimeoutException::operator= (const TGo4EventTimeoutException & right)
00032 {
00033 GO4TRACE((16,"TGo4EventTimeoutException::operator=",__LINE__, __FILE__));
00034 if (&right!=this)
00035 {
00036 TGo4EventSourceException::operator=(right);
00037
00038 return *this;
00039 }
00040 else
00041 {
00042
00043 return *this;
00044 }
00045 }
00046
00047 TGo4EventTimeoutException::~TGo4EventTimeoutException()
00048 {
00049 GO4TRACE((16,"TGo4EventTimeoutException::~TGo4EventTimeoutException()", __LINE__, __FILE__));
00050 }