![]() |
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 "CommandLineException.h" 00003 00004 CommandLineException::CommandLineException(string m) 00005 :msg(m) 00006 { 00007 00008 } 00009 00010 CommandLineException::~CommandLineException() throw() 00011 { 00012 00013 } 00014 00015 const char* CommandLineException::what() const throw() 00016 { 00017 return msg.c_str(); 00018 }