1 /* $Id: GeneratorNotFoundException.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Util.ConnectorProtocolGen;3 4 /** Exception thrown when the searched protocol generator is not registered.5 * @author Tomas Bures 6 */ 7 public class GeneratorNotFoundException extends Exception {8 public GeneratorNotFoundException() { super(); }9 public GeneratorNotFoundException(String msg) { super(msg); }10 public GeneratorNotFoundException(String msg,Throwable e) { super(msg,e); }11 }12