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