mirror of
https://github.com/zoriya/ComSquare.git
synced 2025-12-20 06:05:11 +00:00
20 lines
428 B
C++
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
|