1 23 24 29 42 43 48 49 package com.sun.enterprise.util.pool; 50 51 public class InvalidPoolObjectException 52 extends PoolException 53 { 54 55 public InvalidPoolObjectException() { 56 super(); 57 } 58 59 public InvalidPoolObjectException(String message) { 60 super(message); 61 } 62 63 public InvalidPoolObjectException(String message, Throwable throwable) { 64 super(message, throwable); 65 } 66 67 } | Popular Tags |