1 3 9 10 package org.jboss.cache.lock; 11 12 import org.jboss.cache.CacheException; 13 14 15 25 public class TimeoutException extends CacheException { 26 27 28 private static final long serialVersionUID = -8096787619908687038L; 29 30 public TimeoutException() { 31 super(); 32 } 33 34 public TimeoutException(String msg) { 35 super(msg); 36 } 37 38 public TimeoutException(String msg, Throwable cause) { 39 super(msg, cause); 40 } 41 42 public String toString() { 43 return super.toString(); 44 } 45 } 46 | Popular Tags |