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

org.deeplearning4j.exception.DL4JInvalidInputException Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.deeplearning4j.exception;

/**
 * DL4J Exception thrown when invalid input is provided (wrong rank, wrong size, etc)
 *
 * @author Alex Black
 */
public class DL4JInvalidInputException extends DL4JException {

    public DL4JInvalidInputException() {}

    public DL4JInvalidInputException(String message) {
        super(message);
    }

    public DL4JInvalidInputException(String message, Throwable cause) {
        super(message, cause);
    }

    public DL4JInvalidInputException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy