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