1 10 package org.picocontainer; 11 12 21 public class PicoIntrospectionException extends PicoException { 22 23 29 public PicoIntrospectionException(final String message) { 30 super(message); 31 } 32 33 38 protected PicoIntrospectionException(final Throwable cause) { 39 super(cause); 40 } 41 42 48 public PicoIntrospectionException(final String message, final Throwable cause) { 49 super(message,cause); 50 } 51 } 52 | Popular Tags |