coreexception.h
Go to the documentation of this file.
1 #ifndef DNAI_EXECPTIONS_COREEXECPTION_H
2 #define DNAI_EXECPTIONS_COREEXECPTION_H
3 #include "exception.h"
4 
5 namespace dnai
6 {
7  namespace exceptions
8  {
9  class CoreExeption : public Exception
10  {
11  public:
16  explicit CoreExeption(const std::string& _Message)
17  : Exception(_Message, "Core")
18  {
19  }
20  };
21  }
22 }
23 
24 #endif //DNAI_EXECPTIONS_COREEXECPTION_H
CoreExeption(const std::string &_Message)
Use this class with exception manager in order to throw a dialog exception. Use this class for core m...
Definition: coreexception.h:16
Base class for DNAI Exception.
Definition: exception.h:12
Definition: api.h:13
Definition: coreexception.h:9