mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-31 15:28:39 -06:00
27 lines
627 B
C++
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
|