1 22 package org.objectweb.petals.service; 23 24 import org.objectweb.petals.PetalsException; 25 26 31 public class IllegalBindingException extends PetalsException { 32 33 36 private static final long serialVersionUID = 1L; 37 38 41 public IllegalBindingException() { 42 super(); 43 } 44 45 49 public IllegalBindingException(String message, Throwable cause) { 50 super(message, cause); 51 } 52 53 56 public IllegalBindingException(String message) { 57 super(message); 58 } 59 60 63 public IllegalBindingException(Throwable cause) { 64 super(cause); 65 } 66 67 } 68 | Popular Tags |