1 10 package org.picocontainer.gems.adapters; 11 12 import org.picocontainer.PicoIntrospectionException; 13 14 15 21 public class PoolException extends PicoIntrospectionException { 22 23 private static final long serialVersionUID = 1L; 24 25 32 public PoolException(String message, Throwable cause) { 33 super(message, cause); 34 } 35 36 42 public PoolException(String message) { 43 super(message); 44 } 45 46 } 47 | Popular Tags |