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

com.artemis.WorldConfigurationException Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.artemis;

import java.lang.RuntimeException;import java.lang.String;import java.lang.Throwable; /**
 * World configuration failed.
 *
 * @author Daan van Yperen
 */
public class WorldConfigurationException extends RuntimeException {
	public WorldConfigurationException(String msg) {
		super(msg);
	}

	public WorldConfigurationException(String msg, Throwable e) {
		super(msg,e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy