mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-12 11:03:24 +00:00
update parser
This commit is contained in:
16
sources/Exception/Error.cpp
Normal file
16
sources/Exception/Error.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user