blob: 1ba29ed5978bc172f54f7fe6eb67ccf019907c1b (
plain) (
tree)
|
|
#pragma once
#include "../common/error.hpp"
#include <string>
namespace math::server {
class ParserError : public Error {
public:
explicit ParserError(const std::string& what)
: Error{"parser error: " + what}
{ }
};
}
|