1 26 27 28 package org.objectweb.jonathan.apis.binding; 29 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 32 36 public class BindException extends JonathanException { 37 40 public BindException() { super(); } 41 46 public BindException(String s) { super(s); } 47 52 public BindException(Exception exception) { super(exception); } 53 } 54 55 56 | Popular Tags |