The Gaudi Framework  v33r1 (b1225454)
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)
 overloaded printout to std::ostream More...
 
std::ostreamoperator<< (std::ostream &os, const GaudiException *pge)
 overloaded printout to std::ostream More...
 
MsgStreamoperator<< (MsgStream &os, const GaudiException &ge)
 overloaded printout to MsgStream More...
 
MsgStreamoperator<< (MsgStream &os, const GaudiException *pge)
 overloaded printout to MsgStream More...
 

Function Documentation

◆ operator<<() [1/4]

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

overloaded printout to std::ostream

Definition at line 83 of file GaudiException.cpp.

83 { return ge.printOut( os ); }
virtual std::ostream & printOut(std::ostream &os=std::cerr) const
methods for overloaded printout to std::ostream& and MsgStream&

◆ operator<<() [2/4]

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

overloaded printout to std::ostream

Definition at line 85 of file GaudiException.cpp.

85  {
86  return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
87 }

◆ operator<<() [3/4]

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

overloaded printout to MsgStream

Definition at line 89 of file GaudiException.cpp.

89 { return ge.printOut( os ); }
virtual std::ostream & printOut(std::ostream &os=std::cerr) const
methods for overloaded printout to std::ostream& and MsgStream&

◆ operator<<() [4/4]

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

overloaded printout to MsgStream

Definition at line 91 of file GaudiException.cpp.

91  {
92  return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
93 }