Error control, missing Item Control

Import ( not done ).
And recursive file importing.
This commit is contained in:
AlgorithmX2
2014-02-10 17:15:43 -06:00
parent 4a87ceac4f
commit 21c254f09f
5 changed files with 159 additions and 87 deletions
+11
View File
@@ -0,0 +1,11 @@
package appeng.recipes;
public class MissingIngredientError extends Exception {
private static final long serialVersionUID = -998858343831371697L;
public MissingIngredientError(String n) {
super( n );
}
}