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

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

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

/**
 * Base exception for DL4J
 *
 * @author Alex Black
 */
public class DL4JException extends RuntimeException {

    public DL4JException() {}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy