
com.artemis.InjectionException 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.
The newest version!
package com.artemis;
/**
* Injection failed.
*
* @author Daan van Yperen
*/
public class InjectionException extends RuntimeException {
public InjectionException(String msg) {
super(msg);
}
public InjectionException(String msg, Throwable e) {
super(msg,e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy