Remove System.Exit from part API initialization.

This commit is contained in:
AlgorithmX2 2014-08-02 13:49:59 -05:00
parent 748365d6a4
commit b01360c6a0

View file

@ -91,7 +91,7 @@ public class ApiPart implements IPartHelper
catch (Exception e)
{
AELog.error( e );
System.exit( 1 );
throw new RuntimeException( "Unable to manage part API.", e );
}
return clazz;
}