1 29 30 package javax.jcr.lock; 31 32 import javax.jcr.RepositoryException; 33 34 public class LockException extends RepositoryException { 35 public LockException() 36 { 37 } 38 39 public LockException(String message) 40 { 41 super(message); 42 } 43 44 public LockException(String message, Throwable rootCause) 45 { 46 super(message, rootCause); 47 } 48 49 public LockException(Throwable rootCause) 50 { 51 super(rootCause); 52 } 53 } 54 | Popular Tags |