-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbortException.java
More file actions
38 lines (33 loc) · 895 Bytes
/
AbortException.java
File metadata and controls
38 lines (33 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* @(#)AbortException.java
*
* Copyright (c) 1999-2012 Werner Randelshofer, Immensee, Switzerland.
* All rights reserved.
*
* You may not use, copy or modify this file, except in compliance with the
* license agreement you entered into with Werner Randelshofer.
* For details see accompanying license terms.
*/
/**
* This exception is thrown when the production of an image
* has been aborted.
*
* @author Werner Randelshofer, Hausmatt 10, CH-6405 Immensee, Switzerland
*
* @version $Id: AbortException.java 186 2012-03-28 11:18:42Z werner $
*/
public class AbortException extends Exception {
public static final long serialVersionUID = 1L;
/**
Creates a new exception.
*/
public AbortException() {
super();
}
/**
Creates a new exception.
*/
public AbortException(String message) {
super(message);
}
}