init
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
/// A class representation for range-restricted integer property
|
||||
/// range exceptions.
|
||||
/// </summary>
|
||||
public class InvalidRangeException
|
||||
: System.Exception
|
||||
{
|
||||
/// <summary>
|
||||
/// Initialize an instance of the
|
||||
/// RangeRestrictedDoubleProperty.InvalidRangeException class.
|
||||
/// </summary>
|
||||
public InvalidRangeException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the
|
||||
/// RangeRestrictedDoubleProperty.InvalidRangeException class.
|
||||
/// </summary>
|
||||
///
|
||||
/// <param name="msg">
|
||||
/// The <see cref="string"/> message describing this exception instance.
|
||||
/// </param>
|
||||
///
|
||||
public InvalidRangeException(string msg)
|
||||
: base(msg)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the
|
||||
/// RangeRestrictedDoubleProperty.InvalidRangeException class.
|
||||
/// </summary>
|
||||
///
|
||||
/// <param name="msg">
|
||||
/// The <see cref="string"/> message describing this exception instance.
|
||||
/// </param>
|
||||
///
|
||||
/// <param name="innerEx">
|
||||
/// The inner <see cref="System.Exception"/> behind this enclosing
|
||||
/// exception instance.
|
||||
/// </param>
|
||||
///
|
||||
public InvalidRangeException(string msg, System.Exception innerEx)
|
||||
: base(msg, innerEx)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user