mmb.engine.NotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
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);
}
}