Files
DP44/Common/DTS.Common.Serialization/SliceRaw/SliceRaw.File.PersistentChannel.NotInitializedException.cs
2026-04-17 14:55:32 -04:00

68 lines
2.2 KiB
C#

/*
* SliceRaw.File.PersistentChannel.NotInitializedException.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
{
/// <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 ***
}