Files
TinyORM/include/orm/tiny/exceptions/massassignmenterror.hpp
2022-01-06 11:22:46 +01:00

27 lines
627 B
C++

#pragma once
#ifndef ORM_TINY_EXCEPTIONS_MASSASSIGNMENTERROR_HPP
#define ORM_TINY_EXCEPTIONS_MASSASSIGNMENTERROR_HPP
#include "orm/macros/systemheader.hpp"
TINY_SYSTEM_HEADER
#include "orm/exceptions/runtimeerror.hpp"
TINYORM_BEGIN_COMMON_NAMESPACE
namespace Orm::Tiny::Exceptions
{
/*! Mass assignment exception. */
class MassAssignmentError : public Orm::Exceptions::RuntimeError
{
/*! Inherit constructors. */
using Orm::Exceptions::RuntimeError::RuntimeError;
};
} // namespace Orm::Tiny::Exceptions
TINYORM_END_COMMON_NAMESPACE
#endif // ORM_TINY_EXCEPTIONS_MASSASSIGNMENTERROR_HPP