68 lines
2.1 KiB
C#
68 lines
2.1 KiB
C#
|
|
/*
|
|||
|
|
* 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
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Representation of an attempt to get a property that has yet to be initialized.
|
|||
|
|
/// </summary>
|
|||
|
|
public class NotInitializedException : ApplicationException
|
|||
|
|
{ ///
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the NotInitializedException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
public NotInitializedException()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the NotInitializedException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <param name="msg">
|
|||
|
|
/// The <see cref="string"/> message to be associated with this exception.
|
|||
|
|
/// </param>
|
|||
|
|
///
|
|||
|
|
public NotInitializedException(string msg)
|
|||
|
|
: base(msg)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the NotInitializedException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <param name="msg">
|
|||
|
|
/// The <see cref="string"/> message to be associated with this exception.
|
|||
|
|
/// </param>
|
|||
|
|
///
|
|||
|
|
/// <param name="innerEx">
|
|||
|
|
/// The <see cref="System.Exception"/> responsible for this exception inception.
|
|||
|
|
/// </param>
|
|||
|
|
///
|
|||
|
|
public NotInitializedException(string msg, System.Exception innerEx)
|
|||
|
|
: base(msg, innerEx)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // *** end PersistentChannel ***
|
|||
|
|
} // *** end File ***
|
|||
|
|
}
|