#include <CMSexception.h>
Public Member Functions | |
void | add (Genexception *in) throw () |
virtual cms::Exception * | clone (void) const |
void | dump (std::ostream &o, bool it=false) const throw () |
Genexception () throw () | |
Genexception (const std::string &mess) throw () | |
virtual void | rethrow (void) |
const std::string & | trace () const throw () |
virtual | ~Genexception () throw () |
Private Member Functions | |
void | traceit () throw () |
Private Attributes | |
own_ptr< Genexception > | next |
std::string | trace_ |
cms generic exception
Definition at line 59 of file CMSexception.h.
Genexception::Genexception | ( | ) | throw () |
Definition at line 59 of file CMSexception.cc.
References traceit().
Referenced by clone().
{traceit();}
Genexception::Genexception | ( | const std::string & | mess | ) | throw () |
Definition at line 62 of file CMSexception.cc.
: BaseGenexception(mess) { traceit(); }
Genexception::~Genexception | ( | ) | throw () [virtual] |
Definition at line 68 of file CMSexception.cc.
{}
void Genexception::add | ( | Genexception * | in | ) | throw () |
Definition at line 70 of file CMSexception.cc.
References recoMuon::in.
{ if (in==0) return; // push in the stack... if (next.get()) (*next).add(in); else next = own_ptr<Genexception>(in); }
virtual cms::Exception* Genexception::clone | ( | void | ) | const [inline, virtual] |
Reimplemented from BaseGenexception.
Definition at line 69 of file CMSexception.h.
References Genexception().
{ return new Genexception(*this);}
void Genexception::dump | ( | std::ostream & | o, |
bool | it = false |
||
) | const throw () |
Definition at line 78 of file CMSexception.cc.
References python::connectstrParser::o, and GsfMatrixTools::trace().
Referenced by UncatchedException::dump().
virtual void Genexception::rethrow | ( | void | ) | [inline, virtual] |
const std::string& Genexception::trace | ( | ) | const throw () [inline] |
void Genexception::traceit | ( | ) | throw () [private] |
Definition at line 90 of file CMSexception.cc.
References a, BackTrace::trace(), and trace_.
Referenced by Genexception().
own_ptr<Genexception> Genexception::next [private] |
Definition at line 78 of file CMSexception.h.
std::string Genexception::trace_ [private] |
Definition at line 76 of file CMSexception.h.