#include <exception.h>
Inheritance diagram for EMAN::_OutofRangeException:
Public Member Functions | |
_OutofRangeException (int low, int high, int input, const string &file="unknown", int line=0, const string &desc_str="", const string &objname_str="") | |
const char * | name () const |
The name of this E2Exception class. |
parameters: 1. low The lower limit of the valid range. 2. high The uppper limit of the valid range. 3. input The given, out-of-range value. 4. objname The name of the variable holding the value.
Definition at line 325 of file exception.h.
|
Definition at line 328 of file exception.h. 00332 : E2Exception(file, line, desc_str, objname_str) 00333 { 00334 stringstream ss; 00335 ss << input << " out of range [" << low << "," << high << "]"; 00336 desc = ss.str(); 00337 }
|
|
The name of this E2Exception class.
Reimplemented from EMAN::E2Exception. Definition at line 339 of file exception.h. 00339 { return "OutofRangeException"; }
|