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

org.joo.libra.support.MalformedSyntaxException Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.joo.libra.support;

public class MalformedSyntaxException extends RuntimeException {

	private static final long serialVersionUID = 7343742359471386270L;
	
	public MalformedSyntaxException(String msg) {
		super(msg);
	}

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

	public MalformedSyntaxException(String msg, Throwable cause) {
		super(msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy