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

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

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

/**
 * Exception signifying that the specified configuration is invalid
 *
 * @author Alex Black
 */
public class DL4JInvalidConfigException extends DL4JException {
    public DL4JInvalidConfigException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy