1 package org.apache.ojb.broker.accesslayer; 2 3 17 18 import org.apache.ojb.broker.OJBException; 19 20 26 public class LookupException extends OJBException 27 { 28 public LookupException(String message) 29 { 30 super(message); 31 } 32 33 public LookupException(Throwable cause) 34 { 35 super(cause); 36 } 37 38 public LookupException(String message, Throwable cause) 39 { 40 super(message, cause); 41 } 42 } 43 | Popular Tags |