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

org.nd4j.linalg.exception.ND4JException Maven / Gradle / Ivy

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

/**
 * Base (unchecked) exception for ND4J errors
 *
 * @author Alex Black
 */
public class ND4JException extends RuntimeException {
    public ND4JException() {}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy