org.bigml.binding.InputDataParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigml-binding Show documentation
Show all versions of bigml-binding Show documentation
An open source Java client that gives you a simple binding to interact with BigML. You can use it to
easily create, retrieve, list, update, and delete BigML resources.
package org.bigml.binding;
@SuppressWarnings("serial")
public class InputDataParseException extends Exception {
/**
* Forward the default constructor onto the RuntimeException default
* constructor
*/
public InputDataParseException() {
super();
}
public InputDataParseException(final Throwable x) {
super(x);
}
/**
* Forward to the RuntimeException constructor
*/
public InputDataParseException(final String msg) {
super(msg);
}
/**
* Forward to the RuntimeException constructor
*/
public InputDataParseException(final String msg, Throwable t) {
super(msg, t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy