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