1 /* $Id: BadBindException.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 3 package SOFA.SOFAnode.Made.CDL;4 5 public class BadBindException extends Exception {6 public BadBindException() { super(); }7 public BadBindException(String s) { super(s); }8 public BadBindException(String s, Exception e) { super(s,e); }9 }10