/* * TDAS.File.Reader.MissingFileException.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.Serialization.TDAS { // *** see TDAS.File.cs *** public partial class File { // *** see TDAS.File.Reader.cs *** public partial class Reader { /// /// /// Representation of a missing-file filer event. /// /// public class MissingFileException : Exception { /// /// /// Initialize an instance of the MissingFileException class. /// /// public MissingFileException() { } /// /// Initialize an instance of the MissingFileException class. /// /// /// /// The message to be associated with this exception. /// /// public MissingFileException(string msg) : base(msg) { } /// /// Initialize an instance of the MissingFileException class. /// /// /// /// The message to be associated with this exception. /// /// /// /// The inner that led to this exception's inception. /// /// public MissingFileException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } } }