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