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

64 lines
2.0 KiB
C#

/*
* SliceRaw.File.Reader.MissingFileException.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.Serialization.SliceRaw
{
// *** see SliceRaw.File.cs ***
public partial class File
{
// *** see SliceRaw.File.Reader.cs ***
public partial class Reader
{ ///
/// <summary>
/// Representation of a missing-file filer event.
/// </summary>
///
public class MissingFileException : Exception
{ ///
/// <summary>
/// Initialize an instance of the MissingFileException class.
/// </summary>
///
public MissingFileException()
{
}
/// <summary>
/// Initialize an instance of the MissingFileException class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message to be associated with this exception.
/// </param>
///
public MissingFileException(string msg)
: base(msg)
{
}
/// <summary>
/// Initialize an instance of the MissingFileException class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message to be associated with this exception.
/// </param>
///
/// <param name="innerEx">
/// The inner <see cref="System.Exception"/> that led to this exception's inception.
/// </param>
///
public MissingFileException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
}
}
}