Creating a main and a cartridge reader

This commit is contained in:
AnonymusRaccoon
2020-01-27 18:18:12 +01:00
parent 9d7bb1b6a5
commit 3b96a6f44d
9 changed files with 184 additions and 27 deletions
@@ -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