Files
Bomberman/sources/Exception/Error.cpp
HENRY Benjamin d36c17f113 update parser
2021-06-11 16:34:45 +02:00

16 lines
251 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)
: WalError(what)
{}
} // namespace BBM