#include <exception.h>
Inheritance diagram for EMAN::_InvalidStringException:
Public Member Functions | |
_InvalidStringException (const string &str, const string &file="unknown", int line=0, const string &desc_str="") | |
const char * | name () const |
The name of this E2Exception class. |
Parameters: 1. str The invalid integer value. 2. desc Description of the situation.
Definition at line 302 of file exception.h.
EMAN::_InvalidStringException::_InvalidStringException | ( | const string & | str, | |
const string & | file = "unknown" , |
|||
int | line = 0 , |
|||
const string & | desc_str = "" | |||
) | [inline] |
Definition at line 305 of file exception.h.
References EMAN::E2Exception::objname.
00307 : E2Exception(file, line, desc_str) 00308 { 00309 objname = str; 00310 }
const char* EMAN::_InvalidStringException::name | ( | ) | const [inline, virtual] |
The name of this E2Exception class.
Reimplemented from EMAN::E2Exception.
Definition at line 311 of file exception.h.