1 /*
2 * <cvs:source>$Source: /devel/astrogrid/filemanager/common/src/java/org/astrogrid/filemanager/common/exception/FileManagerPropertiesException.java,v $</cvs:source>
3 * <cvs:author>$Author: jdt $</cvs:author>
4 * <cvs:date>$Date: 2005/01/13 17:23:15 $</cvs:date>
5 * <cvs:version>$Revision: 1.3 $</cvs:version>
6 * <cvs:log>
7 * $Log: FileManagerPropertiesException.java,v $
8 * Revision 1.3 2005/01/13 17:23:15 jdt
9 * merges from dave-dev-200412201250
10 *
11 * Revision 1.2.4.1 2005/01/12 13:16:27 dave
12 * Changed tabs to spaces ...
13 *
14 * Revision 1.2 2004/11/25 00:20:29 jdt
15 * Merge from dave-dev-200410061224-200411221626
16 *
17 * Revision 1.1.2.1 2004/11/05 02:23:45 dave
18 * Refactored identifiers are properties ...
19 *
20 * Revision 1.1.2.1 2004/11/04 15:50:17 dave
21 * Added ivorn pareser and factory.
22 *
23 * </cvs:log>
24 *
25 */
26 package org.astrogrid.filemanager.common.exception ;
27
28 /***
29 * An Exception thrown if there is a problem with a set of properties.
30 *
31 */
32 public class FileManagerPropertiesException
33 extends FileManagerException
34 {
35
36 /***
37 * Public constructor.
38 *
39 */
40 public FileManagerPropertiesException()
41 {
42 super() ;
43 }
44
45 /***
46 * Public constructor.
47 * @param message The exception message.
48 *
49 */
50 public FileManagerPropertiesException(String message)
51 {
52 super(message) ;
53 }
54
55 }