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

org.deeplearning4j.graph.exception.ParseException Maven / Gradle / Ivy

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

/** Unchecked exception signifying that an error occurred during parsing of text */
public class ParseException extends RuntimeException {
    public ParseException(){
        super();
    }

    public ParseException(String s){
        super(s);
    }

    public ParseException(String s, Exception e){
        super(s,e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy