blob: cbfbb1ea58ec35daf137ec3d652cf3fa296688a9 (
plain) (
tree)
|
|
#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}
{ }
};
}
|