Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
opencomputers
/
72caabde723255e7990d2c24bf3f57a6cffb97c8
/
.
/
src
/
api
/
java
/
appeng
/
api
/
exceptions
/
MissingIngredientError.java
blob: 51a200a04a84dff7dbfff841deb6c608bd5d41e4 [
file
] [
log
] [
blame
] [
raw
]
package
appeng
.
api
.
exceptions
;
public
class
MissingIngredientError
extends
Exception
{
private
static
final
long
serialVersionUID
=
-
998858343831371697L
;
public
MissingIngredientError
(
String
n
)
{
super
(
n
);
}
}