init
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
Property.ConstructionException.cs
|
||||
|
||||
$Log: Property.ConstructionException.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 "Property.cs".
|
||||
public partial class Property<Type>
|
||||
{
|
||||
/// <summary>
|
||||
/// A class representation for property construction exceptions.
|
||||
/// </summary>
|
||||
public class ConstructionException
|
||||
: System.Exception
|
||||
{
|
||||
/// <summary>
|
||||
/// Initialize an instance of the Property.ConstructionException class.
|
||||
/// </summary>
|
||||
public ConstructionException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the Property.ConstructionException class.
|
||||
/// </summary>
|
||||
///
|
||||
/// <param name="msg">
|
||||
/// The <see cref="string"/> message describing this exception instance.
|
||||
/// </param>
|
||||
///
|
||||
public ConstructionException(string msg)
|
||||
: base(msg)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the Property.ConstructionException 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 ConstructionException(string msg, System.Exception innerEx)
|
||||
: base(msg, innerEx)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user