com.artemis.MundaneWireException 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 com.artemis.utils.reflect.ClassReflection;
@SuppressWarnings("serial")
public class MundaneWireException extends RuntimeException {
public MundaneWireException(Class extends BaseSystem> klazz) {
super("Not added to world: " + ClassReflection.getSimpleName(klazz));
}
public MundaneWireException(String message, Throwable cause) {
super(message, cause);
}
public MundaneWireException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy