15 lines
256 B
C#
15 lines
256 B
C#
using System;
|
|
|
|
namespace Umbraco.Web.Mvc
|
|
{
|
|
public class ModelBindingException : Exception
|
|
{
|
|
public ModelBindingException()
|
|
{ }
|
|
|
|
public ModelBindingException(string message)
|
|
: base(message)
|
|
{ }
|
|
}
|
|
}
|