Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Related Pages

Exceptions.cpp

00001 #include "Exceptions.h"
00002 
00003 namespace SctDataDisplay {
00004     
00005 //Exception methods    
00006 NoDisplayerException::NoDisplayerException(const string& msg, const string& file, int line) throw() {
00007     initialize("SCT_DISPLAY", "SctDataDisplay::NoDisplayerException", msg, 0, file, line);
00008 }
00009     
00010 NoDisplayerException::NoDisplayerException(Throwable& cause, const string& file, int line) throw() {
00011     initialize("SCT_DISPLAY", "SctDataDisplay::NoDisplayerException", "", &cause, file, line);
00012 }
00013     
00014 NoDisplayerException::NoDisplayerException(const string& msg, Throwable& cause, const string& file, int line) throw() {
00015     initialize("SCT_DISPLAY", "SctDataDisplay::NoDisplayerException", msg, &cause, file, line);
00016 }    
00017     
00018 }
00019 

Generated on Thu Jul 15 09:50:45 2004 for SCT DAQ/DCS Software - C++ by doxygen 1.3.5