1 /* $Id: PropException.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.CodeGen;3 4 /** Exception for errors in generating concrete objects. Probably error in repository content.5 *6 * @author Petr Hnetynka7 */8 public class PropException extends CodeGenException {9 public PropException() { super(); }10 public PropException(String s) { super(s); }11 }12