Files
DP44/Common/DTS.Common.Serialization/TDAS/TDAS.File.PersistentChannel.DataTooBigForArrayException.cs

69 lines
2.2 KiB
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* TDAS.File.PersistentChannel.DataTooBigForArrayException.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 "arrayify" a large dataset that's too large to be
/// safely handled in an array.
/// </summary>
public class DataTooBigForArrayException : ApplicationException
{ ///
/// <summary>
/// Initialize an instance of the DataTooBigForArrayException class.
/// </summary>
///
public DataTooBigForArrayException()
{
}
/// <summary>
/// Initialize an instance of the DataTooBigForArrayException class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message to be associated with this exception.
/// </param>
///
public DataTooBigForArrayException(string msg)
: base(msg)
{
}
/// <summary>
/// Initialize an instance of the DataTooBigForArrayException 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 DataTooBigForArrayException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
} // *** end PersistentChannel ***
} // *** end File ***
}