/* * SliceRaw.File.PersistentChannel.AlreadyInitializedException.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 set a property that has already been initialized /// and exhibits set-once behavior. /// public class AlreadyInitializedException : ApplicationException { /// /// /// Initialize an instance of the AlreadyInitializedException class. /// /// public AlreadyInitializedException() { } /// /// Initialize an instance of the AlreadyInitializedException class. /// /// /// /// The message to be associated with this exception. /// /// public AlreadyInitializedException(string msg) : base(msg) { } /// /// Initialize an instance of the AlreadyInitializedException class. /// /// /// /// The message to be associated with this exception. /// /// /// /// The responsible for this exception inception. /// /// public AlreadyInitializedException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } // *** end PersistentChannel *** } // *** end File *** }