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

mmb.engine.NotFoundException Maven / Gradle / Ivy

Go to download

Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world. THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<

The newest version!
/**
 * 
 */
package mmb.engine;

/**
 * @author oskar
 *
 */
public class NotFoundException extends RuntimeException {
	private static final long serialVersionUID = 7047254397578982800L;

	public NotFoundException() {
		super();
	}

	public NotFoundException(String arg0, Throwable arg1) {
		super(arg0, arg1);
	}

	public NotFoundException(String arg0) {
		super(arg0);
	}

	public NotFoundException(Throwable arg0) {
		super(arg0);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy