1 22 package org.jboss.tm.recovery; 23 24 31 public class RecoveryTestingException extends RuntimeException  32 { 33 private static final long serialVersionUID = 1L; 34 35 public RecoveryTestingException() 36 { 37 } 38 39 public RecoveryTestingException(String message) 40 { 41 super(message); 42 } 43 44 public RecoveryTestingException(String message, Throwable cause) 45 { 46 super(message, cause); 47 } 48 49 public RecoveryTestingException(Throwable cause) 50 { 51 super(cause); 52 } 53 } 54 | Popular Tags |