![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
An exception thrown when an error relating to a data file is detected. More...
#include <DataFileException.h>
Public Member Functions | |
DataFileException (string m="exception!") | |
Constructor. | |
~DataFileException () throw () | |
Destructor. | |
const char * | what () const throw () |
Retrieves the reason of the exception. | |
Private Attributes | |
string | msg |
The reason of the exception to be thrown. |
An exception thrown when an error relating to a data file is detected.
When this error is thrown, there probably is something wrong with one of the data files supplied to the program.
Definition at line 29 of file DataFileException.h.
DataFileException::DataFileException | ( | string | m = "exception!" | ) |
Constructor.
m | The description of the reason for the exception to be thrown. |
Definition at line 4 of file DataFileException.cpp.
:msg(m) { }