1 8 9 package com.sleepycat.je; 10 11 15 public class LockNotGrantedException extends DeadlockException { 16 17 29 30 public LockNotGrantedException() { 31 super(); 32 } 33 34 public LockNotGrantedException(Throwable t) { 35 super(t); 36 } 37 38 public LockNotGrantedException(String message) { 39 super(message); 40 } 41 42 public LockNotGrantedException(String message, Throwable t) { 43 super(message, t); 44 } 45 } 46 | Popular Tags |