bes
Updated for version 3.20.6
|
exception thrown if internal error encountered More...
#include <BESInternalError.h>
Public Member Functions | |
BESInternalError (const std::string &msg, const std::string &file, unsigned int line) | |
virtual void | dump (std::ostream &strm) const |
Displays debug information about this object. More... | |
virtual int | get_bes_error_type () |
Return the return code for this error class. More... | |
virtual std::string | get_file () |
get the file name where the exception was thrown More... | |
virtual int | get_line () |
get the line number where the exception was thrown More... | |
virtual std::string | get_message () |
get the error message for this exception More... | |
virtual std::string | get_verbose_message () |
virtual void | set_bes_error_type (int type) |
Set the return code for this particular error class. More... | |
virtual void | set_message (const std::string &msg) |
set the error message for this exception More... | |
Protected Attributes | |
std::string | _file |
unsigned int | _line |
std::string | _msg |
unsigned int | _type |
exception thrown if internal error encountered
Definition at line 43 of file BESInternalError.h.
|
inlinevirtual |
Displays debug information about this object.
dumps information about this object
strm | output stream to use to dump the contents of this object |
Displays the pointer value of this instance along with the exception message, the file from which the exception was generated, and the line number in that file.
strm | C++ i/o stream to dump the information to |
Reimplemented from BESError.
Reimplemented in cmr::CmrError.
Definition at line 57 of file BESInternalError.h.
|
inlinevirtualinherited |
Return the return code for this error class.
Returns the return code for this error class, which could represent the need to terminate or do something specific base on the error
Definition at line 143 of file BESError.h.
|
inlinevirtualinherited |
get the file name where the exception was thrown
Definition at line 107 of file BESError.h.
|
inlinevirtualinherited |
get the line number where the exception was thrown
Definition at line 115 of file BESError.h.
|
inlinevirtualinherited |
get the error message for this exception
Definition at line 99 of file BESError.h.
|
inlinevirtualinherited |
Set the return code for this particular error class.
Sets the return code for this error class, which could represent the need to terminate or do something specific based on the error.
type | the type of error this error object represents. Can be one of BES_INTERNAL_ERROR, BES_INTERNAL_FATAL_ERROR, BES_SYNTAX_USER_ERROR, BES_FORBIDDEN_ERROR, BES_NOT_FOUND_ERROR |
Definition at line 132 of file BESError.h.
|
inlinevirtualinherited |
set the error message for this exception
msg | message string |
Definition at line 91 of file BESError.h.