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

com.artemis.MundaneWireException Maven / Gradle / Ivy

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

import com.artemis.utils.reflect.ClassReflection;


@SuppressWarnings("serial")
public class MundaneWireException extends RuntimeException {

	public MundaneWireException(Class 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