SpikeStream Library  0.2
SpikeStreamException.h
Go to the documentation of this file.
00001 #ifndef SPIKESTREAMEXCEPTION_H
00002 #define SPIKESTREAMEXCEPTION_H
00003 
00004 #include <QString>
00005 namespace spikestream {
00006 
00008         class SpikeStreamException {
00009                 public:
00010                         SpikeStreamException(QString details = QString("No details available"));
00011                         virtual ~SpikeStreamException();
00012                         virtual QString getMessage();
00013 
00014                 protected:
00015                         QString type;
00016 
00017                 private:
00018                         QString details;
00019         };
00020 
00021 }
00022 
00023 #endif // SPIKESTREAMEXCEPTION_H
 All Classes Files Functions Variables Typedefs Defines