1 3 10 package org.jboss.cache.lock; 11 12 13 20 public class DeadlockException extends LockingException 21 { 22 23 private static final long serialVersionUID = 8651993450626741020L; 24 25 30 public DeadlockException(String msg) 31 { 32 super(msg); 33 } 34 35 public DeadlockException(String msg, Throwable cause) 36 { 37 super(msg, cause); 38 } 39 40 41 } 42 | Popular Tags |