/* * 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 { /// /// Representation of a failed attempt to convert a "Large" interface data type to one of /// the smaller data types in the "standard" interface. /// private class LargeOverflowException : ApplicationException { /// /// Initialize an instance of the /// class. /// public LargeOverflowException() { } /// /// Initialize an instance of the /// class. /// /// /// /// The message describing this exception instance. /// /// public LargeOverflowException(string msg) : base(msg) { } /// /// Initialize an instance of the /// class. /// /// /// /// The message describing this exception instance. /// /// /// /// The inner behind this enclosing /// exception instance. /// /// public LargeOverflowException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } }