update parser

This commit is contained in:
HENRY Benjamin
2021-06-11 16:34:45 +02:00
parent 958a9328fe
commit d36c17f113
8 changed files with 205 additions and 61 deletions

View 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