/*
* SliceRaw.File.PersistentChannel.IsInitializingException.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 of a persistent channel still
/// being initialized.
///
public class IsInitializingException : ApplicationException
{ ///
///
/// Initialize an instance of the IsInitializingException class.
///
///
public IsInitializingException()
{
}
///
/// Initialize an instance of the IsInitializingException class.
///
///
///
/// The message to be associated with this exception.
///
///
public IsInitializingException(string msg)
: base(msg)
{
}
///
/// Initialize an instance of the IsInitializingException class.
///
///
///
/// The message to be associated with this exception.
///
///
///
/// The responsible for this exception exception.
///
///
public IsInitializingException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
} // *** end PersistentChannel ***
} // *** end File ***
}