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

27 lines
553 B
C++

#pragma once
#ifndef ORM_EXCEPTIONS_INVALIDFORMATERROR_HPP
#define ORM_EXCEPTIONS_INVALIDFORMATERROR_HPP
#include "orm/macros/systemheader.hpp"
TINY_SYSTEM_HEADER
#include "orm/exceptions/logicerror.hpp"
TINYORM_BEGIN_COMMON_NAMESPACE
namespace Orm::Exceptions
{
/*! Invalid format exception. */
class InvalidFormatError : public LogicError
{
/*! Inherit constructors. */
using LogicError::LogicError;
};
} // namespace Orm::Exceptions
TINYORM_END_COMMON_NAMESPACE
#endif // ORM_EXCEPTIONS_INVALIDFORMATERROR_HPP