Exception object for DataObject exceptions. More...
#include <itkDataObject.h>
Public Member Functions | |
DataObjectError () | |
DataObjectError (const std::string &file, unsigned int lineNumber) | |
DataObjectError (const DataObjectError &orig) | |
DataObjectError (const char *file, unsigned int lineNumber) | |
DataObject * | GetDataObject () |
virtual const char * | GetNameOfClass () const |
DataObjectError & | operator= (const DataObjectError &orig) |
void | SetDataObject (DataObject *dobj) |
virtual | ~DataObjectError () throw () |
Protected Member Functions | |
virtual void | PrintSelf (std::ostream &os, Indent indent) const |
Exception object for DataObject exceptions.
Definition at line 38 of file itkDataObject.h.
itk::DataObjectError::DataObjectError | ( | ) |
Default constructor. Needed to ensure the exception object can be copied.
virtual itk::DataObjectError::~DataObjectError | ( | ) | throw () [inline, virtual] |
Destructor. Need to specify empty throw() to avoid warnings.
Definition at line 46 of file itkDataObject.h.
itk::DataObjectError::DataObjectError | ( | const char * | file, | |
unsigned int | lineNumber | |||
) |
Constructor. Needed to ensure the exception object can be copied.
itk::DataObjectError::DataObjectError | ( | const std::string & | file, | |
unsigned int | lineNumber | |||
) |
Constructor. Needed to ensure the exception object can be copied.
itk::DataObjectError::DataObjectError | ( | const DataObjectError & | orig | ) |
Copy constructor. Needed to ensure the exception object can be copied.
DataObject* itk::DataObjectError::GetDataObject | ( | ) |
Get the data object that is throwing this exception.
virtual const char* itk::DataObjectError::GetNameOfClass | ( | ) | const [virtual] |
Standard type macro
Reimplemented in itk::InvalidRequestedRegionError.
DataObjectError& itk::DataObjectError::operator= | ( | const DataObjectError & | orig | ) |
Operator=. Needed to ensure the exception object can be copied.
virtual void itk::DataObjectError::PrintSelf | ( | std::ostream & | os, | |
Indent | indent | |||
) | const [protected, virtual] |
Print exception information. This method can be overridden by specific exception subtypes. The default is to print out the location where the exception was first thrown and any description provided by the ``thrower''.
Reimplemented in itk::InvalidRequestedRegionError.
void itk::DataObjectError::SetDataObject | ( | DataObject * | dobj | ) |
Set the data object that is throwing this exception.