/* 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 { /// /// A class representation for property construction exceptions. /// public class ConstructionException : System.Exception { /// /// Initialize an instance of the Property.ConstructionException class. /// public ConstructionException() { } /// /// Initialize an instance of the Property.ConstructionException class. /// /// /// /// The message describing this exception instance. /// /// public ConstructionException(string msg) : base(msg) { } /// /// Initialize an instance of the Property.ConstructionException class. /// /// /// /// The message describing this exception instance. /// /// /// /// The inner behind this enclosing /// exception instance. /// /// public ConstructionException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } }