1 18 package org.apache.activemq.kaha; 19 20 21 26 27 public class RuntimeStoreException extends RuntimeException { 28 29 30 private static final long serialVersionUID=8807084681372365173L; 31 32 35 public RuntimeStoreException(){ 36 super(); 37 } 38 39 43 public RuntimeStoreException(String message){ 44 super(message); 45 } 46 47 52 public RuntimeStoreException(String message,Throwable cause){ 53 super(message,cause); 54 } 55 56 60 public RuntimeStoreException(Throwable cause){ 61 super(cause); 62 } 63 } 64 | Popular Tags |