mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-04 18:09:42 -06:00
27 lines
558 B
C++
27 lines
558 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
|
|
{
|
|
/*! Inherit constructors. */
|
|
using SqlError::SqlError;
|
|
};
|
|
|
|
} // namespace Orm::Exceptions
|
|
|
|
TINYORM_END_COMMON_NAMESPACE
|
|
|
|
#endif // ORM_EXCEPTIONS_SQLTRANSACTIONERROR_HPP
|