00001 #ifndef SCTDATADISPLAY_EXCEPTIONS_H
00002 #define SCTDATADISPLAY_EXCEPTIONS_H
00003
00004
00005
00006 #include "Sct/Exception.h"
00007
00008 namespace SctDataDisplay {
00009
00010
00011 class NoDisplayerException : Sct::Exception {
00012 public:
00016 NoDisplayerException(const string& msg, const string& file, int line) throw();
00017
00022 NoDisplayerException(Throwable& cause, const string& file, int line) throw();
00023
00027 NoDisplayerException(const string& msg, Throwable& cause, const string& file, int line) throw();
00028
00029 protected:
00030 NoDisplayerException() throw() {}
00031 };
00032
00033
00034 }
00035
00036 #endif //SCTDATADISPLAY_EXCEPTIONS_H