Files
TinyORM/include/orm/exceptions/sqltransactionerror.hpp
silverqx d5f9632470 enhanced exception classes
- normalized comments
 - added a new std::string ctor
 - getters noexcept
2022-04-13 19:22:39 +02:00

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