Files
Bomberman/sources/Exception/Error.cpp
2021-06-14 15:18:28 +02:00

16 lines
248 B
C++

//
// Created by hbenjamin on 11/06/2021.
//
#include "Error.hpp"
namespace BBM
{
Error::Error(const std::string &what)
: std::runtime_error(what)
{}
ParserError::ParserError(const std::string &what)
: Error(what)
{}
} // namespace BBM