View Javadoc

1   /*
2    * Entagged Audio Tag library
3    * Copyright (c) 2003-2005 Christian Laireiter <liree@web.de>
4    * 
5    * This library is free software; you can redistribute it and/or
6    * modify it under the terms of the GNU Lesser General Public
7    * License as published by the Free Software Foundation; either
8    * version 2.1 of the License, or (at your option) any later version.
9    *  
10   * This library is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   * Lesser General Public License for more details.
14   * 
15   * You should have received a copy of the GNU Lesser General Public
16   * License along with this library; if not, write to the Free Software
17   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
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 &quote;entagged audio library&quote; 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  }