![]() |
Mixed Data Coincidence Analysis Software 1.0
A program to analyze files produced by the EventMixer software.
|
00001 using namespace std; 00002 #include "CommandLineException.hh" 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 }