64 lines
2.0 KiB
C#
64 lines
2.0 KiB
C#
|
|
/*
|
|||
|
|
* TDAS.File.Reader.TooManyFilesException.cs
|
|||
|
|
*
|
|||
|
|
* Copyright © 2009
|
|||
|
|
* Diversified Technical Systems, Inc.
|
|||
|
|
* All Rights Reserved
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace DTS.Serialization.TDAS
|
|||
|
|
{
|
|||
|
|
// *** see TDAS.File.cs ***
|
|||
|
|
public partial class File
|
|||
|
|
{
|
|||
|
|
// *** see TDAS.File.Reader.cs ***
|
|||
|
|
public partial class Reader
|
|||
|
|
{ ///
|
|||
|
|
/// <summary>
|
|||
|
|
/// Representation of too-many-files filer event.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
public class TooManyFilesException : Exception
|
|||
|
|
{ ///
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the TooManyFilesException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
public TooManyFilesException()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the TooManyFilesException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <param name="msg">
|
|||
|
|
/// The <see cref="string"/> message to be associated with this exception.
|
|||
|
|
/// </param>
|
|||
|
|
///
|
|||
|
|
public TooManyFilesException(string msg)
|
|||
|
|
: base(msg)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the TooManyFilesException 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 TooManyFilesException(string msg, System.Exception innerEx)
|
|||
|
|
: base(msg, innerEx)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|