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