/*
RangeRestrictedDoubleProperty.InvalidRangeException.cs
$Log: RangeRestrictedDoubleProperty.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 "RangeRestrictedDoubleProperty.cs"
public partial class RangeRestrictedDoubleProperty
{
///
/// A class representation for range-restricted integer property
/// range exceptions.
///
public class InvalidRangeException
: System.Exception
{
///
/// Initialize an instance of the
/// RangeRestrictedDoubleProperty.InvalidRangeException class.
///
public InvalidRangeException()
{
}
///
/// Initialize an instance of the
/// RangeRestrictedDoubleProperty.InvalidRangeException class.
///
///
///
/// The message describing this exception instance.
///
///
public InvalidRangeException(string msg)
: base(msg)
{
}
///
/// Initialize an instance of the
/// RangeRestrictedDoubleProperty.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)
{
}
}
}
}