mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-05-24 11:49:14 -05:00
30 lines
697 B
C++
30 lines
697 B
C++
#pragma once
|
|
#ifndef INVALIDTEMPLATEARGUMENTERROR_HPP
|
|
#define INVALIDTEMPLATEARGUMENTERROR_HPP
|
|
|
|
#include "orm/macros/systemheader.hpp"
|
|
TINY_SYSTEM_HEADER
|
|
|
|
#include "orm/exceptions/invalidargumenterror.hpp"
|
|
|
|
#ifdef TINYORM_COMMON_NAMESPACE
|
|
namespace TINYORM_COMMON_NAMESPACE
|
|
{
|
|
#endif
|
|
namespace Orm::Exceptions
|
|
{
|
|
|
|
/*! Invalid template argument exception. */
|
|
class SHAREDLIB_EXPORT InvalidTemplateArgumentError : public InvalidArgumentError
|
|
{
|
|
/*! Inherit constructors. */
|
|
using InvalidArgumentError::InvalidArgumentError;
|
|
};
|
|
|
|
} // namespace Orm
|
|
#ifdef TINYORM_COMMON_NAMESPACE
|
|
} // namespace TINYORM_COMMON_NAMESPACE
|
|
#endif
|
|
|
|
#endif // INVALIDTEMPLATEARGUMENTERROR_HPP
|