libki/include/ki/util/exception.h

12 lines
205 B
C
Raw Normal View History

#pragma once
#include <stdexcept>
namespace ki
{
class runtime_error : public std::runtime_error
{
public:
explicit runtime_error(const std::string &message)
: std::runtime_error(message) {}
};
}