#include <exception.h>
Inheritance diagram for EMAN::_ImageDimensionException:
Public Member Functions | |
_ImageDimensionException (const string &desc_str, const string &file="unknown", int line=0) | |
const char * | name () const |
The name of this E2Exception class. |
For example, a 2D image is given when a 3D image is expected. Also, when the image is complex as opposed to real (d.woolford). Parameters: 1. desc The description of the situation.
Definition at line 164 of file exception.h.
|
Definition at line 167 of file exception.h. 00169 : E2Exception(file, line, desc_str) {}
|
|
The name of this E2Exception class.
Reimplemented from EMAN::E2Exception. Definition at line 171 of file exception.h. 00171 { return "ImageDimensionException"; }
|