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