SpikeStream Library
0.2
|
00001 #ifndef NUMBERCONVERSIONEXCEPTION_H 00002 #define NUMBERCONVERSIONEXCEPTION_H 00003 00004 //SpikeStream includes 00005 #include "SpikeStreamException.h" 00006 00007 namespace spikestream{ 00008 00010 class NumberConversionException : public SpikeStreamException { 00011 public: 00012 NumberConversionException(QString details); 00013 ~NumberConversionException(); 00014 00015 }; 00016 00017 } 00018 00019 #endif//NUMBERCONVERSIONEXCEPTION_H 00020 00021 00022