exceptions.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: BSD-3-Clause
2 
3 /*
4  * Copyright (c) 2020, Bjarne von Horn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  * * Redistributions of source code must retain the above copyright notice,
10  * this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  * * Neither the name of the copyright holder nor the names of its contributors
15  * may be used to endorse or promote products derived from this software
16  * without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL BJARNE VON HORN BE LIABLE FOR ANY DIRECT,
22  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 #pragma once
30 
32 #include <warehouse_ros_sqlite/warehouse_ros_sqlite_export.h>
33 #include <boost/format.hpp>
34 
35 extern "C" {
36 struct sqlite3;
37 struct sqlite3_stmt;
38 }
39 
40 namespace warehouse_ros_sqlite
41 {
42 struct WAREHOUSE_ROS_SQLITE_EXPORT InternalError : public warehouse_ros::WarehouseRosException
43 {
45  InternalError(const char* msg, sqlite3* db);
46  InternalError(const char* msg, sqlite3_stmt* stmt);
47 };
48 
49 struct WAREHOUSE_ROS_SQLITE_EXPORT DatatypeMismatch : public warehouse_ros::WarehouseRosException
50 {
52 };
53 
54 struct WAREHOUSE_ROS_SQLITE_EXPORT SchemaVersionMismatch : public warehouse_ros::WarehouseRosException
55 {
56  int version_in_database_, version_compiled_in_;
58  SchemaVersionMismatch(int version_in_database, int version_compiled_in)
59  : warehouse_ros::WarehouseRosException(
60  boost::format("Database schema version mismatch, stored in file: %1%, compiled in version: %2%") %
61  version_in_database % version_compiled_in)
62  , version_in_database_(version_in_database)
63  , version_compiled_in_(version_compiled_in)
64  {
65  }
66 };
67 } // namespace warehouse_ros_sqlite
warehouse_ros_sqlite
Definition: database_connection.h:36
warehouse_ros::WarehouseRosException::WarehouseRosException
WarehouseRosException(const char *str)
boost
warehouse_ros::WarehouseRosException
warehouse_ros_sqlite::SchemaVersionMismatch::version_in_database_
int version_in_database_
Definition: exceptions.h:56
warehouse_ros_sqlite::InternalError
Definition: exceptions.h:42
exceptions.h
warehouse_ros_sqlite::SchemaVersionMismatch::SchemaVersionMismatch
SchemaVersionMismatch(int version_in_database, int version_compiled_in)
Definition: exceptions.h:58
warehouse_ros
warehouse_ros_sqlite::SchemaVersionMismatch
Definition: exceptions.h:54
warehouse_ros_sqlite::DatatypeMismatch
Definition: exceptions.h:49


warehouse_ros_sqlite
Author(s): Bjarne von Horn
autogenerated on Mon Oct 14 2024 02:16:58