Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

TGo4LogicException.cxx

Go to the documentation of this file.
00001 //-------------------------------------------------------------
00002 //        Go4 Release Package v3.04-01 (build 30401)
00003 //                      28-November-2008
00004 //---------------------------------------------------------------
00005 //   The GSI Online Offline Object Oriented (Go4) Project
00006 //   Experiment Data Processing at EE department, GSI
00007 //---------------------------------------------------------------
00008 //
00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI
00010 //                    Planckstr. 1, 64291 Darmstadt, Germany
00011 //Contact:            http://go4.gsi.de
00012 //----------------------------------------------------------------
00013 //This software can be used under the license agreements as stated
00014 //in Go4License.txt file which is part of the distribution.
00015 //----------------------------------------------------------------
00016 #include "TGo4LogicException.h"
00017 
00018 #include "TGo4Log.h"
00019 
00020 TGo4LogicException::TGo4LogicException()
00021 {
00022   TRACE((14,"TGo4LogicException::TGo4LogicException() constructor",__LINE__, __FILE__));
00023   fxDescription= "!!!-- Go4 Logic Exception --!!!";
00024 }
00025 
00026 TGo4LogicException::TGo4LogicException(const TGo4LogicException &right)
00027   :TGo4Exception(right)
00028 {
00029    TRACE((14,"TGo4LogicException::TGo4LogicException() copy constructor",__LINE__, __FILE__));
00030 }
00031 
00032 
00033 TGo4LogicException::~TGo4LogicException()
00034 {
00035   TRACE((14,"TGo4LogicException::~TGo4LogicException() destructor",__LINE__, __FILE__));
00036 }
00037 
00038 
00039 TGo4LogicException & TGo4LogicException::operator=(const TGo4LogicException &right)
00040 {
00041   TRACE((14,"TGo4LogicException::operator=",__LINE__, __FILE__));
00042   if (&right!=this)
00043     {
00044       TRACE((13,"TGo4LogicException::operator= processing copy",__LINE__, __FILE__));
00045       TGo4Exception::operator=(right); // copy base class members
00046       // put additional member copies here...
00047       return *this;
00048     }
00049   else
00050     {
00051       // copy is already source object
00052       TRACE((13,"TGo4LogicException::operator= source and destination objects are identical",__LINE__, __FILE__));
00053       return *this;
00054     }
00055 }
00056 
00057 Int_t TGo4LogicException::Handle ()
00058 {
00059    TRACE((14,"TGo4LogicException::Handle()",__LINE__, __FILE__));
00060    TGo4Exception::Handle(); // basic handle method printsout exception type
00061    return 0;
00062 }
00063 
00064 
00065 
00066 
00067 
00068 //----------------------------END OF GO4 SOURCE FILE ---------------------

Generated on Fri Nov 28 12:59:11 2008 for Go4-v3.04-1 by  doxygen 1.4.2