1 package org.objectweb.perseus.concurrency.distributed.globallock.api; 2 3 27 public class GlobalLockException extends Exception { 28 public GlobalLockException() { 29 super(); 30 } 31 32 public GlobalLockException(String s) { 33 super(s); 34 } 35 36 public GlobalLockException(String s, Throwable throwable) { 37 super(s, throwable); 38 } 39 40 public GlobalLockException(Throwable throwable) { 41 super(throwable); 42 } 43 44 } 45 | Popular Tags |