Files
ComSquare/sources/Exceptions/NotImplementedException.hpp
2020-01-27 18:18:12 +01:00

20 lines
428 B
C++

//
// Created by anonymus-raccoon on 1/27/20.
//
#ifndef COMSQUARE_NOTIMPLEMENTEDEXCEPTION_HPP
#define COMSQUARE_NOTIMPLEMENTEDEXCEPTION_HPP
#include <exception>
namespace ComSquare
{
class NotImplementedException : std::exception {
public:
explicit NotImplementedException() = default;
const char *what() const noexcept override { return "Not implemented yet."; }
};
}
#endif //COMSQUARE_NOTIMPLEMENTEDEXCEPTION_HPP