summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-error.cpp
blob: 71dda0414e9671a6698aa68b56c6da7a748afa3f (plain)
1
2
3
4
5
6
7
8
9
10
#include "sqlite-error.h"
#include <error.h>

SQLite::Error::Error(sqlite3 * db) : msg(sqlite3_errmsg(db)) { }

std::string
SQLite::Error::message() const noexcept
{
	return msg;
}