1 /* $Id: GenerException.java,v 1.1.1.1 2003/02/11 16:19:40 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 GenerException extends CodeGenException {9 public GenerException() { super(); }10 public GenerException(String s) { super(s); }11 public GenerException(String s, Throwable cause) { super(s, cause); }12 }13