KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Util > ConnectorProtocolGen > GeneratorNotFoundException


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 JavaDoc {
8   public GeneratorNotFoundException() { super(); }
9   public GeneratorNotFoundException(String JavaDoc msg) { super(msg); }
10   public GeneratorNotFoundException(String JavaDoc msg,Throwable JavaDoc e) { super(msg,e); }
11 }
12
Popular Tags