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

org.snapscript.parse.ParseException Maven / Gradle / Ivy

package org.snapscript.parse;

public class ParseException extends RuntimeException {
   
   public ParseException(String message) {
      super(message);
   }
   
   public ParseException(String message, Throwable cause) {
      super(message, cause);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy