/* * TDAS.File.PersistentChannel.NotInitializedException.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ using System; namespace DTS.Serialization.TDAS { // *** see TDAS.File.cs *** public partial class File { // *** see TDAS.File.PersistentChannel.cs *** public partial class PersistentChannel { /// /// Representation of an attempt to get a property that has yet to be initialized. /// public class NotInitializedException : ApplicationException { /// /// /// Initialize an instance of the NotInitializedException class. /// /// public NotInitializedException() { } /// /// Initialize an instance of the NotInitializedException class. /// /// /// /// The message to be associated with this exception. /// /// public NotInitializedException(string msg) : base(msg) { } /// /// Initialize an instance of the NotInitializedException class. /// /// /// /// The message to be associated with this exception. /// /// /// /// The responsible for this exception inception. /// /// public NotInitializedException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } // *** end PersistentChannel *** } // *** end File *** }