aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/common/error.hpp
blob: 8a371755d99b467eb2886e1a874e3f1c82ca1a00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 <stdexcept>
#include <string>

namespace math::server {

class Error : public std::runtime_error {
public:
    explicit Error(const std::string& what) : std::runtime_error{"server error: " + what} {}
};

} // namespace math::server