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

org.unlaxer.jaddress.ParseException Maven / Gradle / Ivy

The newest version!
package org.unlaxer.jaddress;

public class ParseException extends RuntimeException{

	private static final long serialVersionUID = 295578272019588614L;

	public ParseException() {
		super();
	}

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy