/* * TDAS.File.Reader.BadCrcException.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 bad CRC filer event. /// /// public class BadCrcException : Exception { /// /// /// Initialize an instance of the BadCrcException class. /// /// public BadCrcException() { } /// /// Initialize an instance of the BadCrcException class. /// /// /// /// The message to be associated with this exception. /// /// public BadCrcException(string msg) : base(msg) { } /// /// Initialize an instance of the BadCrcException class. /// /// /// /// The message to be associated with this exception. /// /// /// /// The inner that led to this exception's inception. /// /// public BadCrcException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } } }