com.artemis.WorldConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
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