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

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

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