mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-25 20:39:41 -06:00
27 lines
609 B
C++
27 lines
609 B
C++
#pragma once
|
|
#ifndef ORM_EXCEPTIONS_INVALIDARGUMENTERROR_HPP
|
|
#define ORM_EXCEPTIONS_INVALIDARGUMENTERROR_HPP
|
|
|
|
#include "orm/macros/systemheader.hpp"
|
|
TINY_SYSTEM_HEADER
|
|
|
|
#include "orm/exceptions/logicerror.hpp"
|
|
|
|
TINYORM_BEGIN_COMMON_NAMESPACE
|
|
|
|
namespace Orm::Exceptions
|
|
{
|
|
|
|
/*! TinyORM invalid argument exception. */
|
|
class InvalidArgumentError : public LogicError // clazy:exclude=copyable-polymorphic
|
|
{
|
|
/*! Inherit constructors. */
|
|
using LogicError::LogicError;
|
|
};
|
|
|
|
} // namespace Orm::Exceptions
|
|
|
|
TINYORM_END_COMMON_NAMESPACE
|
|
|
|
#endif // ORM_EXCEPTIONS_INVALIDARGUMENTERROR_HPP
|