1 10 11 package org.picocontainer; 12 13 20 public class PicoRegistrationException extends PicoException { 21 22 28 public PicoRegistrationException(final String message) { 29 super(message); 30 } 31 32 37 protected PicoRegistrationException(final Throwable cause) { 38 super(cause); 39 } 40 41 47 public PicoRegistrationException(String message, Throwable cause) { 48 super(message, cause); 49 } 50 } 51 | Popular Tags |