/* * TDAS.File.PersistentChannel.DataTooBigForArrayException.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ using System; namespace DTS.Serialization.TDAS { // *** see TDAS.File.cs *** public partial class File { // *** see TDAS.File.PersistentChannel.cs *** public partial class PersistentChannel { /// /// Representation of an attempt to "arrayify" a large dataset that's too large to be /// safely handled in an array. /// public class DataTooBigForArrayException : ApplicationException { /// /// /// Initialize an instance of the DataTooBigForArrayException class. /// /// public DataTooBigForArrayException() { } /// /// Initialize an instance of the DataTooBigForArrayException class. /// /// /// /// The message to be associated with this exception. /// /// public DataTooBigForArrayException(string msg) : base(msg) { } /// /// Initialize an instance of the DataTooBigForArrayException class. /// /// /// /// The message to be associated with this exception. /// /// /// /// The responsible for this exception inception. /// /// public DataTooBigForArrayException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } // *** end PersistentChannel *** } // *** end File *** }