|
Gaudi Framework, version v23r4 |
| Home | Generated: Mon Sep 17 2012 |
#include <components/ErrorTool.h>


Public Member Functions | |
| ErrorTool (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard constructor. | |
| virtual | ~ErrorTool () |
| virtual and protected destrcutor | |
| virtual StatusCode | Error (const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const |
| Print the error message, return status code and perform the statistics of error messages. | |
| virtual StatusCode | Warning (const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const |
| Print the warning message, return status code and perform the statistics of warning messages. | |
| virtual StatusCode | Print (const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const |
| Print the message and return status code. | |
| virtual void | Assert (const bool ok, const std::string &message="", const StatusCode sc=StatusCode::FAILURE) const |
| Assertion - throw exception, if condition is not fulfilled. | |
| virtual void | Exception (const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode::FAILURE) const |
| Create and (re)-throw the exception. | |
| virtual void | Exception (const std::string &msg, const std::exception &exc, const StatusCode sc=StatusCode::FAILURE) const |
| Create and (re)-throw the exception. | |
| virtual void | Exception (const std::string &msg="no message", const StatusCode sc=StatusCode::FAILURE) const |
| Create and throw the exception. | |
Definition at line 23 of file ErrorTool.h.
| ErrorTool::ErrorTool | ( | const std::string & | type, |
| const std::string & | name, | ||
| const IInterface * | parent | ||
| ) |
| ErrorTool::~ErrorTool | ( | ) | [virtual] |
| virtual void ErrorTool::Assert | ( | const bool | ok, |
| const std::string & | message = "", |
||
| const StatusCode | sc = StatusCode::FAILURE |
||
| ) | const [inline, virtual] |
Assertion - throw exception, if condition is not fulfilled.
| CaloException | for invalid condition |
| ok | condition which should be "true" |
| message | message to be associated with the exception |
| sc | status code to be returned (artificial) |
Implements IErrorTool.
Definition at line 113 of file ErrorTool.h.
{ GaudiTool::Assert ( ok , message , sc ) ; }
| virtual StatusCode ErrorTool::Error | ( | const std::string & | msg, |
| const StatusCode | st = StatusCode::FAILURE, |
||
| const size_t | mx = 10 |
||
| ) | const [inline, virtual] |
Print the error message, return status code and perform the statistics of error messages.
IErrorTool* tool = .. ; if( a < 0 ) { return tool->Error(" 'a' is negative!") ;} if( b < 0 ) { return tool->Error(" 'b' is illegal!" , StatusCode(25) ); if( c < 0 ) { return tool->Error(" 'c' is negative" , StatusCode(35) , 50 );
| msg | error message |
| st | status code |
| mx | maximal number of printouts |
Implements IErrorTool.
Definition at line 67 of file ErrorTool.h.
{ return GaudiTool::Error ( msg , st, mx ) ; }
| virtual void ErrorTool::Exception | ( | const std::string & | msg = "no message", |
| const StatusCode | sc = StatusCode::FAILURE |
||
| ) | const [inline, virtual] |
Create and throw the exception.
| GaudiException | always! |
| msg | exception message |
| sc | status code |
Implements IErrorTool.
Definition at line 154 of file ErrorTool.h.
| virtual void ErrorTool::Exception | ( | const std::string & | msg, |
| const GaudiException & | exc, | ||
| const StatusCode | sc = StatusCode::FAILURE |
||
| ) | const [inline, virtual] |
Create and (re)-throw the exception.
| CaudiException | always! |
| msg | exception message |
| exc | (previous) exception of type GaudiException |
| sc | status code |
Implements IErrorTool.
Definition at line 127 of file ErrorTool.h.
| virtual void ErrorTool::Exception | ( | const std::string & | msg, |
| const std::exception & | exc, | ||
| const StatusCode | sc = StatusCode::FAILURE |
||
| ) | const [inline, virtual] |
Create and (re)-throw the exception.
| GaudiException | always! |
| msg | exception message |
| exc | (previous) exception of type std::exception |
| sc | status code |
Implements IErrorTool.
Definition at line 141 of file ErrorTool.h.
| virtual StatusCode ErrorTool::Print | ( | const std::string & | msg, |
| const StatusCode | st = StatusCode::SUCCESS, |
||
| const MSG::Level | lev = MSG::INFO |
||
| ) | const [inline, virtual] |
Print the message and return status code.
| msg | warning message |
| st | status code |
| lev | print level |
Implements IErrorTool.
Definition at line 98 of file ErrorTool.h.
{ return GaudiTool::Print( msg , st , lev ) ; }
| virtual StatusCode ErrorTool::Warning | ( | const std::string & | msg, |
| const StatusCode | st = StatusCode::FAILURE, |
||
| const size_t | mx = 10 |
||
| ) | const [inline, virtual] |
Print the warning message, return status code and perform the statistics of warning messages.
| msg | warning message |
| st | statsu code |
| mx | maximal number of printouts |
Implements IErrorTool.
Definition at line 83 of file ErrorTool.h.
{ return GaudiTool::Warning( msg , st , mx ) ; }