aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/server/parser/error.hpp
blob: 6aea015712ed4b763d53b05135d69adc04cefd40 (plain) (tree)
1
2
3
4
5
6
7
8




                                                               

            
                           






                                  
                                                                                     

  
                           
// 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 ParserError : public Error {
public:
    explicit ParserError(const std::string& what) : Error{"parser error: " + what} {}
};

} // namespace math::server