aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/smartcard/TransportIoException.java
blob: 544dd4045f2f800665527c8927aea08e0d9b95ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.sufficientlysecure.keychain.smartcard;

import java.io.IOException;

public class TransportIoException extends IOException {
    public TransportIoException() {
    }

    public TransportIoException(final String detailMessage) {
        super(detailMessage);
    }

    public TransportIoException(final String message, final Throwable cause) {
        super(message, cause);
    }

    public TransportIoException(final Throwable cause) {
        super(cause);
    }
}