mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-30 09:08:43 +00:00
Creating a main and a cartridge reader
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user