All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bigml.binding.AuthenticationException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.1.1
Show newest version
package org.bigml.binding;

@SuppressWarnings("serial")
public class AuthenticationException extends Exception {

    /**
     * Forward the default constructor onto the RuntimeException default
     * constructor
     */
    public AuthenticationException() {
        super();
    }

    public AuthenticationException(final Throwable x) {
        super(x);
    }

    /**
     * Forward to the RuntimeException constructor
     */
    public AuthenticationException(final String msg) {
        super(msg);
    }

    /**
     * Forward to the RuntimeException constructor
     */
    public AuthenticationException(final String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy