![]() |
|
|
Generated: 8 Jan 2009 |
#include <components/ErrorTool.h>


Definition at line 23 of file 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 StatusCode | Assert (const bool ok, const std::string &message="", const StatusCode sc=StatusCode::FAILURE) const |
| Assertion - throw exception, if condition is not fulfilled. | |
| virtual StatusCode | Exception (const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode::FAILURE) const |
| Create and (re)-throw the exception. | |
| virtual StatusCode | Exception (const std::string &msg, const std::exception &exc, const StatusCode sc=StatusCode::FAILURE) const |
| Create and (re)-throw the exception. | |
| virtual StatusCode | Exception (const std::string &msg="no message", const StatusCode sc=StatusCode::FAILURE) const |
| Create and throw the exception. | |
| ErrorTool::ErrorTool | ( | const std::string & | type, | |
| const std::string & | name, | |||
| const IInterface * | parent | |||
| ) |
| ErrorTool::~ErrorTool | ( | ) | [virtual] |
| 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.
00070 { return GaudiTool::Error ( msg , st, mx ) ; }
| 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.
00086 { return GaudiTool::Warning( msg , st , mx ) ; }
| 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.
00101 { return GaudiTool::Print( msg , st , lev ) ; }
| virtual StatusCode 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 condifition |
| 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.
00116 { return GaudiTool::Assert ( ok , message , sc ) ; }
| virtual StatusCode 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 StatusCode 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::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.