/*
* 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
{ ///
///
/// Representation of too-many-files filer event.
///
///
public class TooManyFilesException : Exception
{ ///
///
/// Initialize an instance of the TooManyFilesException class.
///
///
public TooManyFilesException()
{
}
///
/// Initialize an instance of the TooManyFilesException class.
///
///
///
/// The message to be associated with this exception.
///
///
public TooManyFilesException(string msg)
: base(msg)
{
}
///
/// Initialize an instance of the TooManyFilesException class.
///
///
///
/// The message to be associated with this exception.
///
///
///
/// The responsible for this exception inception.
///
///
public TooManyFilesException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
}
}
}