// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.Framework.Internal; namespace Microsoft.AspNet.Mvc.ModelBinding { /// /// The that is thrown when too many model errors are encountered. /// public class TooManyModelErrorsException : Exception { /// /// Creates a new instance of with the specified /// exception . /// /// The message that describes the error. public TooManyModelErrorsException([NotNull] string message) : base(message) { } } }