The Gaudi Framework  master (37c0b60a)
GaudiException.cpp File Reference
Include dependency graph for GaudiException.cpp:

Go to the source code of this file.

Functions

std::ostreamoperator<< (std::ostream &os, const GaudiException &ge)
 
std::ostreamoperator<< (std::ostream &os, const GaudiException *pge)
 
MsgStreamoperator<< (MsgStream &os, const GaudiException &ge)
 
MsgStreamoperator<< (MsgStream &os, const GaudiException *pge)
 

Function Documentation

◆ operator<<() [1/4]

MsgStream& operator<< ( MsgStream os,
const GaudiException ge 
)

Definition at line 86 of file GaudiException.cpp.

86 { return ge.printOut( os ); }

◆ operator<<() [2/4]

MsgStream& operator<< ( MsgStream os,
const GaudiException pge 
)

Definition at line 88 of file GaudiException.cpp.

88  {
89  return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
90 }

◆ operator<<() [3/4]

std::ostream& operator<< ( std::ostream os,
const GaudiException ge 
)

Definition at line 80 of file GaudiException.cpp.

80 { return ge.printOut( os ); }

◆ operator<<() [4/4]

std::ostream& operator<< ( std::ostream os,
const GaudiException pge 
)

Definition at line 82 of file GaudiException.cpp.

82  {
83  return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
84 }
GaudiException::printOut
virtual std::ostream & printOut(std::ostream &os=std::cerr) const
methods for overloaded printout to std::ostream& and MsgStream&
Definition: GaudiException.cpp:68