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

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

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

public class DeepLearningException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = -7973589163269627293L;

	public DeepLearningException() {
		super();
	}

	public DeepLearningException(String message, Throwable cause,
			boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

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

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

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

	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy