Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef WOLF_EXCEPTION_H
00008 #define WOLF_EXCEPTION_H
00009
00010 #include <QString>
00011
00012 class WException
00013 {
00014 protected:
00015 WException(QString e,QString c){err=e;comp=c;}
00016 public:
00017 QString error()const{return err;}
00018 QString component()const{return comp;}
00019 private:
00020 QString err,comp;
00021 };
00022
00023 #endif