You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
343 B
26 lines
343 B
11 years ago
|
package mightypork.util.files.ion;
|
||
11 years ago
|
|
||
11 years ago
|
|
||
11 years ago
|
public class IonException extends Exception {
|
||
11 years ago
|
|
||
11 years ago
|
public IonException() {
|
||
|
super();
|
||
|
}
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
public IonException(String message, Throwable cause) {
|
||
|
super(message, cause);
|
||
|
}
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
public IonException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
public IonException(Throwable cause) {
|
||
|
super(cause);
|
||
|
}
|
||
11 years ago
|
|
||
11 years ago
|
}
|