1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package entagged.audioformats.exceptions;
20
21 import java.io.File;
22
23 /***
24 * This exception is thrown if a
25 * {@link entagged.audioformats.generic.AudioFileModificationListener} wants to
26 * prevent the "e;entagged audio library"e; from actually finishing its
27 * operation.<br>
28 * This exception can be used in all methods but
29 * {@link entagged.audioformats.generic.AudioFileModificationListener#fileOperationFinished(File)}.
30 *
31 * @author Christian Laireiter
32 */
33 public class ModifyVetoException extends Exception {
34
35 /***
36 * (overridden)
37 */
38 public ModifyVetoException() {
39 super();
40 }
41
42 /***
43 * (overridden)
44 *
45 * @see Exception#Exception(java.lang.String)
46 */
47 public ModifyVetoException(String message) {
48 super(message);
49 }
50
51 /***
52 * (overridden)
53 *
54 * @see Exception#Exception(java.lang.String, java.lang.Throwable)
55 */
56 public ModifyVetoException(String message, Throwable cause) {
57 super(message, cause);
58 }
59
60 /***
61 * (overridden)
62 *
63 * @see Exception#Exception(java.lang.Throwable)
64 */
65 public ModifyVetoException(Throwable cause) {
66 super(cause);
67 }
68
69 }