aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/lexer/error.hpp
blob: 994309a13f28dd92454403572322cbb359c6d4e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "math-server" project.
// For details, see https://github.com/egor-tensin/math-server.
// Distributed under the MIT License.

#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} {}
};

} // namespace math::server