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

convex.core.exceptions.ParseException Maven / Gradle / Ivy

There is a newer version: 0.7.15
Show newest version
package convex.core.exceptions;

/**
 * Class for parse exceptions
 *
 */
@SuppressWarnings("serial")
public class ParseException extends RuntimeException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy