View Javadoc

1   /**
2    * 
3    */
4   package net.sf.jpkgmk;
5   
6   /**
7    * Exception that tells the user that an entry in a file already exists.
8    * @author gommma (gommma AT users.sourceforge.net)
9    * @author Last changed by: $Author: gommma $
10   * @version $Revision: 2 $ $Date: 2008-08-20 21:14:19 +0200 (Mi, 20 Aug 2008) $
11   * @since 1.0
12   */
13  public class DuplicateEntryException extends PackageException {
14  
15  	/**
16  	 * 
17  	 */
18  	private static final long serialVersionUID = 1L;
19  
20  	/**
21  	 * 
22  	 */
23  	public DuplicateEntryException() {
24  	}
25  
26  	/**
27  	 * @param message
28  	 */
29  	public DuplicateEntryException(String message) {
30  		super(message);
31  	}
32  
33  	/**
34  	 * @param cause
35  	 */
36  	public DuplicateEntryException(Throwable cause) {
37  		super(cause);
38  	}
39  
40  	/**
41  	 * @param message
42  	 * @param cause
43  	 */
44  	public DuplicateEntryException(String message, Throwable cause) {
45  		super(message, cause);
46  	}
47  
48  }