1 package org.apache.ojb.otm.lock; 2 3 17 18 import org.apache.commons.lang.exception.NestableException; 19 20 public class LockingException extends NestableException 21 { 22 23 26 public LockingException() 27 { 28 super(); 29 } 30 31 35 public LockingException(String message) 36 { 37 super(message); 38 } 39 40 44 public LockingException(Throwable exception) 45 { 46 super(exception); 47 } 48 49 54 public LockingException(String message, Throwable exception) 55 { 56 super(message, exception); 57 } 58 59 } 60 | Popular Tags |