Fix test broken by PR #1027

This commit is contained in:
Stephan
2016-01-19 12:52:26 +01:00
parent 0621019918
commit 9f360c2b9b
4 changed files with 24 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace Umbraco.Web.Mvc
{
public class ModelBindingException : Exception
{
public ModelBindingException()
{ }
public ModelBindingException(string message)
: base(message)
{ }
}
}