18 lines
No EOL
374 B
Java
18 lines
No EOL
374 B
Java
package com.tangem.cardReader;
|
|
|
|
public class TLVException extends Exception {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public TLVException(String message){
|
|
super(message);
|
|
}
|
|
|
|
public TLVException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public TLVException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
} |