Files
TinyORM/include/orm/exceptions/sqltransactionerror.hpp
2021-11-13 11:12:50 +01:00

27 lines
550 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
{
/*! Sql transaction exception. */
class SqlTransactionError : public SqlError
{
/*! Inherit constructors. */
using SqlError::SqlError;
};
} // namespace Orm::Exceptions
TINYORM_END_COMMON_NAMESPACE
#endif // ORM_EXCEPTIONS_SQLTRANSACTIONERROR_HPP