Newer
Older
#ifndef __VEREIGN_SQLITE_ERROR_HH
#define __VEREIGN_SQLITE_ERROR_HH
#include <stdexcept>
namespace vereign::sqlite {
Error(int code, const std::string& msg)
: std::runtime_error(msg),
code_{code}
{
#ifndef __VEREIGN_SQLITE_ERROR_HH
#define __VEREIGN_SQLITE_ERROR_HH
#include <stdexcept>
namespace vereign::sqlite {
Error(int code, const std::string& msg)
: std::runtime_error(msg),
code_{code}
{