1 8 9 package com.sleepycat.je; 10 11 15 public class DeadlockException extends DatabaseException { 16 17 public DeadlockException() { 18 super(); 19 } 20 21 public DeadlockException(Throwable t) { 22 super(t); 23 } 24 25 public DeadlockException(String message) { 26 super(message); 27 } 28 29 public DeadlockException(String message, Throwable t) { 30 super(message, t); 31 } 32 } 33 | Popular Tags |