|
Gaudi Framework, version v21r11 |
| Home | Generated: 30 Sep 2010 |
#include "GaudiKernel/Kernel.h"#include "GaudiKernel/StatusCode.h"#include "GaudiKernel/MsgStream.h"#include "GaudiKernel/System.h"#include <string>#include <iostream>#include <exception>
Go to the source code of this file.
Classes | |
| class | GaudiException |
| Define general base for Gaudi exception. More... | |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const GaudiException &ge) |
| overloaded printout to std::ostream | |
| std::ostream & | operator<< (std::ostream &os, const GaudiException *pge) |
| MsgStream & | operator<< (MsgStream &os, const GaudiException &ge) |
| overloaded printout to MsgStream | |
| MsgStream & | operator<< (MsgStream &os, const GaudiException *pge) |
| overloaded printout to MsgStream | |
| MsgStream& operator<< | ( | MsgStream & | os, | |
| const GaudiException * | pge | |||
| ) |
overloaded printout to MsgStream
Definition at line 192 of file GaudiException.h.
00192 { 00193 return (0 == pge) ? 00194 ( os << " GaudiException* points to NULL!" ) : ( os << *pge ); 00195 }
| MsgStream& operator<< | ( | MsgStream & | os, | |
| const GaudiException & | ge | |||
| ) |
overloaded printout to MsgStream
Definition at line 188 of file GaudiException.h.
00188 { 00189 return ge.printOut( os ); 00190 }
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const GaudiException * | pge | |||
| ) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const GaudiException & | ge | |||
| ) |
overloaded printout to std::ostream
Definition at line 180 of file GaudiException.h.
00180 { 00181 return ge.printOut( os ); 00182 }