![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 using namespace std; 00002 #include "DataFileException.h" 00003 00004 DataFileException::DataFileException(string m) 00005 :msg(m) 00006 { 00007 00008 } 00009 00010 DataFileException::~DataFileException() throw() 00011 { 00012 00013 } 00014 00015 const char* DataFileException::what() const throw() 00016 { 00017 return msg.c_str(); 00018 }