blob: 5d4fd7226bf612d80997983ed1a41de6edf4d35f [file] [log] [blame]
package org.apache.cassandra.sidecar.common.testing;
/**
* Misc exception to be thrown when we don't know what's actually wrong
*/
public class CassandraPodException extends Exception
{
public CassandraPodException(String message)
{
super(message);
}
}