org.cassandraunit.exception.CassandraUnitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-unit-shaded Show documentation
Show all versions of cassandra-unit-shaded Show documentation
Shaded version of cassandra-unit
package org.cassandraunit.exception;
public class CassandraUnitException extends RuntimeException {
public CassandraUnitException(String message, Throwable cause) {
super(message, cause);
}
public CassandraUnitException(String message) {
super(message);
}
}