ComSquare
NotImplementedException.hpp
Go to the documentation of this file.
1 //
2 // Created by anonymus-raccoon on 1/27/20.
3 //
4 
5 #ifndef COMSQUARE_NOTIMPLEMENTEDEXCEPTION_HPP
6 #define COMSQUARE_NOTIMPLEMENTEDEXCEPTION_HPP
7 
8 #include <exception>
9 
10 namespace ComSquare
11 {
13  class NotImplementedException : std::exception {
14  public:
15  explicit NotImplementedException() = default;
16  const char *what() const noexcept override { return "Not implemented yet."; }
17  };
18 }
19 
20 #endif //COMSQUARE_NOTIMPLEMENTEDEXCEPTION_HPP
ComSquare::NotImplementedException::what
const char * what() const noexcept override
Definition: NotImplementedException.hpp:16
ComSquare::NotImplementedException::NotImplementedException
NotImplementedException()=default
ComSquare::NotImplementedException
When this is thrown, it means that we should work more.
Definition: NotImplementedException.hpp:13
ComSquare
Definition: APU.cpp:9