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

org.johnnei.enjin.EnjinException Maven / Gradle / Ivy

The newest version!
package org.johnnei.enjin;

/**
 * An exception in the API which is either a logical exception or protocol exception
 */
public class EnjinException extends RuntimeException {

	private static final long serialVersionUID = 7945040725150899041L;

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

	public EnjinException(String message, Exception e) {
		super(message, e);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy