This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
/*
* LargeArray.LargeOverflowException.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
using System.Text;
using DTS.Common.Utilities;
using DTS.Common.Utilities.DotNetProgrammingConstructs;
namespace DTS.Common.Utilities.IO.MemoryMap
{
// *** see LargeArray.cs ***
public partial class LargeArray<T>
{
/// <summary>
/// Representation of a failed attempt to convert a "Large" interface data type to one of
/// the smaller data types in the "standard" interface.
/// </summary>
private class LargeOverflowException : ApplicationException
{
/// <summary>
/// Initialize an instance of the
/// <see cref="T:LargeArray.LargeOverflowException"/> class.
/// </summary>
public LargeOverflowException()
{
}
/// <summary>
/// Initialize an instance of the
/// <see cref="T:LargeArray.LargeOverflowException"/> class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message describing this exception instance.
/// </param>
///
public LargeOverflowException(string msg)
: base(msg)
{
}
/// <summary>
/// Initialize an instance of the
/// <see cref="T:LargeArray.LargeOverflowException"/> class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message describing this exception instance.
/// </param>
///
/// <param name="innerEx">
/// The inner <see cref="System.Exception"/> behind this enclosing
/// exception instance.
/// </param>
///
public LargeOverflowException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
}
}