using System; using System.Runtime.Serialization; namespace NTwain { /// /// Represents a general exception with TWAIN. /// [Serializable] public class TwainException : Exception { /// /// Initializes a new instance of the class. /// public TwainException() { } /// /// Initializes a new instance of the class. /// /// The message. public TwainException(string message) : base(message) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner exception. public TwainException(string message, Exception innerException) : base(message, innerException) { } /// /// Initializes a new instance of the class. /// /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. /// /// The parameter is null. /// /// /// The class name is null or is zero (0). /// protected TwainException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }