#include <Exception.h>
Public Member Functions | |
| Exception (const char *expr, const char *msg, const char *file, int line) | |
Public Attributes | |
| std::string | fExpression |
| The expression to be asserted. | |
| std::string | fMessage |
| Text error message. | |
| std::string | fFile |
| File producing exception. | |
| int | fLine |
| Line # within file producing exception. | |
Exception will be caught by JobCJob, and unless --nodump option was passed to anamipp, the job will stop.
Definition at line 35 of file fmwk/JobControl/Exception.h.
|
||||||||||||||||||||
|
Definition at line 37 of file fmwk/JobControl/Exception.h. 00037 : 00038 fExpression(expr), 00039 fMessage(msg), 00040 fFile(file), 00041 fLine(line) 00042 { } std::string fExpression;
|
|
|
The expression to be asserted.
Definition at line 43 of file fmwk/JobControl/Exception.h. |
|
|
File producing exception.
Definition at line 45 of file fmwk/JobControl/Exception.h. |
|
|
Line # within file producing exception.
Definition at line 46 of file fmwk/JobControl/Exception.h. |
|
|
Text error message.
Definition at line 44 of file fmwk/JobControl/Exception.h. |
1.3.9.1