1 package org.jboss.cache; 2 3 8 public class SuspectException extends CacheException 9 { 10 11 private static final long serialVersionUID = -2965599037371850141L; 12 13 public SuspectException() { 14 super(); 15 } 16 17 public SuspectException(String msg) { 18 super(msg); 19 } 20 21 public SuspectException(String msg, Throwable cause) { 22 super(msg, cause); 23 } 24 25 public String toString() { 26 return super.toString(); 27 } 28 } 29 | Popular Tags |