mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-08 06:31:11 +00:00
16 lines
248 B
C++
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
|