com.datastax.data.dataset.util.SchemaCreationException Maven / Gradle / Ivy
package com.datastax.data.dataset.util;
public class SchemaCreationException extends Exception {
public SchemaCreationException(String msg) {
super(msg);
}
public SchemaCreationException(String msg, Throwable cause) {
super(msg, cause);
}
}