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