792249f8fd
Added Meteorite Compass Block / Item. Added Meteorite Spawner Debug Item. Some Refactoring.
14 lines
252 B
Java
14 lines
252 B
Java
package appeng.services.helpers;
|
|
|
|
public class CompassException extends RuntimeException
|
|
{
|
|
|
|
private static final long serialVersionUID = 8825268683203860877L;
|
|
|
|
public final Throwable inner;
|
|
|
|
public CompassException(Throwable t) {
|
|
inner = t;
|
|
}
|
|
|
|
}
|