Files
TinyORM/include/orm/exceptions/invalidtemplateargumenterror.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
652 B
C++

#pragma once
#ifndef ORM_EXCEPTIONS_INVALIDTEMPLATEARGUMENTERROR_HPP
#define ORM_EXCEPTIONS_INVALIDTEMPLATEARGUMENTERROR_HPP
#include "orm/macros/systemheader.hpp"
TINY_SYSTEM_HEADER
#include "orm/exceptions/invalidargumenterror.hpp"
TINYORM_BEGIN_COMMON_NAMESPACE
namespace Orm::Exceptions
{
/*! TinyORM invalid template argument exception. */
class InvalidTemplateArgumentError : public InvalidArgumentError
{
/*! Inherit constructors. */
using InvalidArgumentError::InvalidArgumentError;
};
} // namespace Orm::Exceptions
TINYORM_END_COMMON_NAMESPACE
#endif // ORM_EXCEPTIONS_INVALIDTEMPLATEARGUMENTERROR_HPP