Source code: feynman/framework/system/PhysicalObjectFactoryException.java
1 /*
2 * $Header: /cvsroot/feynman/src/feynman/framework/system/PhysicalObjectFactoryException.java,v 1.1.1.1 2002/11/12 02:25:43 wesley_bailey Exp $
3 * $Revision: 1.1.1.1 $
4 * $Date: 2002/11/12 02:25:43 $
5 * $Copyright: Copyright (C) 2002 Path Integral Software $
6 */
7 package feynman.framework.system;
8
9 /**
10 * This excpetion is generally invoked when the user has either configured the
11 * properties file incorrectly by specifying not specifying a sub-class of the
12 * <b>PhysicalObject</b>that cannot be created by the Factory.
13 *
14 * @author Wes Bailey
15 * @version $Revision: 1.1.1.1 $ $Date: 2002/11/12 02:25:43 $
16 */
17 public class PhysicalObjectFactoryException extends Exception {
18
19 // Only need package private contructors.
20 public PhysicalObjectFactoryException() {
21 super();
22 }
23
24 public PhysicalObjectFactoryException(String message) {
25 super(message);
26 }
27
28 }