blob: 940e7beefd6eca654346b3041e1eb4d46fb82a68 [file] [log] [blame] [raw]
package appeng.api.exceptions;
public class AppEngException extends Exception
{
private static final long serialVersionUID = -9051434206368465494L;
public AppEngException(String t)
{
super(t);
}
}