2020-05-08 13:23:44 +02:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
2022-05-09 09:39:46 +02:00
|
|
|
namespace Umbraco.Cms.Web.Common.ModelBinders;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The exception that is thrown when an error occurs while binding a source to a model.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <seealso cref="Exception" />
|
|
|
|
|
/// Migrated to .NET Core
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ModelBindingException : Exception
|
2020-05-08 13:23:44 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-05-09 09:39:46 +02:00
|
|
|
/// Initializes a new instance of the <see cref="ModelBindingException" /> class.
|
2020-05-08 13:23:44 +02:00
|
|
|
/// </summary>
|
2022-05-09 09:39:46 +02:00
|
|
|
public ModelBindingException()
|
2020-05-08 13:23:44 +02:00
|
|
|
{
|
2022-05-09 09:39:46 +02:00
|
|
|
}
|
2020-05-08 13:23:44 +02:00
|
|
|
|
2022-05-09 09:39:46 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ModelBindingException" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="message">The message that describes the error.</param>
|
|
|
|
|
public ModelBindingException(string message)
|
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2020-05-08 13:23:44 +02:00
|
|
|
|
2022-05-09 09:39:46 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ModelBindingException" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
|
|
|
/// <param name="innerException">
|
|
|
|
|
/// The exception that is the cause of the current exception, or a null reference (
|
|
|
|
|
/// <see langword="Nothing" /> in Visual Basic) if no inner exception is specified.
|
|
|
|
|
/// </param>
|
|
|
|
|
public ModelBindingException(string message, Exception innerException)
|
|
|
|
|
: base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
2020-05-08 13:23:44 +02:00
|
|
|
|
2022-05-09 09:39:46 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ModelBindingException" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info">
|
|
|
|
|
/// The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object
|
|
|
|
|
/// data about the exception being thrown.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="context">
|
|
|
|
|
/// The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
|
|
|
|
|
/// information about the source or destination.
|
|
|
|
|
/// </param>
|
|
|
|
|
protected ModelBindingException(SerializationInfo info, StreamingContext context)
|
|
|
|
|
: base(info, context)
|
|
|
|
|
{
|
2020-05-08 13:23:44 +02:00
|
|
|
}
|
|
|
|
|
}
|