/* * 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 { /// /// Representation of erroneous pre-existing /// scratch file condition. /// private class ScratchFileAlreadyExistsException : ApplicationException { /// /// Initialize an instance of the /// class. /// public ScratchFileAlreadyExistsException() { } /// /// Initialize an instance of the /// class. /// /// /// /// The message describing this exception instance. /// /// public ScratchFileAlreadyExistsException(string msg) : base(msg) { } /// /// Initialize an instance of the /// class. /// /// /// /// The message describing this exception instance. /// /// /// /// The inner behind this enclosing /// exception instance. /// /// public ScratchFileAlreadyExistsException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } }