mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-23 19:39:31 -06:00
27 lines
596 B
C++
27 lines
596 B
C++
#pragma once
|
|
#ifndef ORM_EXCEPTIONS_SQLTRANSACTIONERROR_HPP
|
|
#define ORM_EXCEPTIONS_SQLTRANSACTIONERROR_HPP
|
|
|
|
#include "orm/macros/systemheader.hpp"
|
|
TINY_SYSTEM_HEADER
|
|
|
|
#include "orm/exceptions/sqlerror.hpp"
|
|
|
|
TINYORM_BEGIN_COMMON_NAMESPACE
|
|
|
|
namespace Orm::Exceptions
|
|
{
|
|
|
|
/*! TinyORM Sql transaction exception. */
|
|
class SqlTransactionError : public SqlError // clazy:exclude=copyable-polymorphic
|
|
{
|
|
/*! Inherit constructors. */
|
|
using SqlError::SqlError;
|
|
};
|
|
|
|
} // namespace Orm::Exceptions
|
|
|
|
TINYORM_END_COMMON_NAMESPACE
|
|
|
|
#endif // ORM_EXCEPTIONS_SQLTRANSACTIONERROR_HPP
|