mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-06-11 13:29:22 +00:00
23 lines
396 B
C++
23 lines
396 B
C++
//
|
|
// Created by anonymus-raccoon on 1/30/20.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <exception>
|
|
#include <string>
|
|
#include <utility>
|
|
#include "DebuggableError.hpp"
|
|
|
|
namespace ComSquare
|
|
{
|
|
//! @brief Exception thrown when someone tries to load an invalid rom.
|
|
class InvalidAction : public DebuggableError
|
|
{
|
|
public:
|
|
explicit InvalidAction(std::string msg)
|
|
: DebuggableError(std::move(msg))
|
|
{}
|
|
};
|
|
}
|