1 package org.apache.ojb.broker.cache; 2 3 17 import org.apache.ojb.broker.OJBRuntimeException; 18 19 public class RuntimeCacheException extends OJBRuntimeException 20 { 21 public RuntimeCacheException() 22 { 23 } 24 25 public RuntimeCacheException(String msg) 26 { 27 super(msg); 28 } 29 30 public RuntimeCacheException(Throwable cause) 31 { 32 super(cause); 33 } 34 35 public RuntimeCacheException(String msg, Throwable cause) 36 { 37 super(msg, cause); 38 } 39 } 40 | Popular Tags |