package org.rhq.cassandra.schema; /** * @author John Sanda */ public class AbortedException extends Exception { public AbortedException() { super(); } public AbortedException(String message) { super(message); } public AbortedException(String message, Throwable cause) { super(message, cause); } public AbortedException(Throwable cause) { super(cause); } }