Files
DP44/Common/DTS.Common.Utilities/LargeArray.ScratchFileAlreadyExistsException.cs
2026-04-17 14:55:32 -04:00

74 lines
2.3 KiB
C#

/*
* LargeArray.ScratchFileAlreadyExistsException.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 erroneous pre-existing <see cref="T:LargeArray"/>
/// scratch file condition.
/// </summary>
private class ScratchFileAlreadyExistsException : ApplicationException
{
/// <summary>
/// Initialize an instance of the
/// <see cref="T:LargeArray.ScratchFileAlreadyExistsException"/> class.
/// </summary>
public ScratchFileAlreadyExistsException()
{
}
/// <summary>
/// Initialize an instance of the
/// <see cref="T:LargeArray.ScratchFileAlreadyExistsException"/> class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message describing this exception instance.
/// </param>
///
public ScratchFileAlreadyExistsException(string msg)
: base(msg)
{
}
/// <summary>
/// Initialize an instance of the
/// <see cref="T:LargeArray.ScratchFileAlreadyExistsException"/> 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 ScratchFileAlreadyExistsException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
}
}