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

com.casualsuperman.portent.exceptions.EnvironmentException Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.casualsuperman.portent.exceptions;

/**
 * Exception caused by the execution environment not behaving as expected. File permissions, etc.
 */
public class EnvironmentException extends RuntimeException {
	public EnvironmentException(String message) {
		super(message);
	}

	public EnvironmentException(String message, Exception cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy