/* RangeRestrictedIntProperty.InvalidRangeException.cs $Log: RangeRestrictedIntProperty.InvalidRangeException.cs,v $ Revision 1.1 2007/12/13 23:57:33 Paul Hrissikopoulos Added ISO raw format. Copyright © 2007 Diversified Technical Systems, Inc. All Rights Reserved */ using System; using System.Collections.Generic; using System.Text; namespace DTS.Common.Utilities.DotNetProgrammingConstructs { // See "RangeRestrictedIntProperty.cs" public partial class RangeRestrictedIntProperty { /// /// A class representation for range-restricted integer property /// range exceptions. /// public class InvalidRangeException : System.Exception { /// /// Initialize an instance of the /// RangeRestrictedIntProperty.InvalidRangeException class. /// public InvalidRangeException() { } /// /// Initialize an instance of the /// RangeRestrictedIntProperty.InvalidRangeException class. /// /// /// /// The message describing this exception instance. /// /// public InvalidRangeException(string msg) : base(msg) { } /// /// Initialize an instance of the /// RangeRestrictedIntProperty.InvalidRangeException class. /// /// /// /// The message describing this exception instance. /// /// /// /// The inner behind this enclosing /// exception instance. /// /// public InvalidRangeException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } }