The Gaudi Framework  v30r4 (9b837755)
GaudiException.h File Reference
#include "GaudiKernel/Kernel.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/StatusCode.h"
#include <exception>
#include <iostream>
#include <string>
Include dependency graph for GaudiException.h:

Go to the source code of this file.

Classes

class  GaudiException
 Define general base for Gaudi exception. More...
 

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

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&
std::ostream& operator<< ( std::ostream os,
const GaudiException pge 
)

overloaded printout to std::ostream

Definition at line 85 of file GaudiException.cpp.

86 {
87  return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
88 }
MsgStream& operator<< ( MsgStream os,
const GaudiException ge 
)

overloaded printout to MsgStream

Definition at line 90 of file GaudiException.cpp.

90 { return ge.printOut( os ); }
virtual std::ostream & printOut(std::ostream &os=std::cerr) const
methods for overloaded printout to std::ostream& and MsgStream&
MsgStream& operator<< ( MsgStream os,
const GaudiException pge 
)

overloaded printout to MsgStream

Definition at line 92 of file GaudiException.cpp.

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