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

com.artemis.InjectionException Maven / Gradle / Ivy

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