Improved Part API Errors.

This commit is contained in:
AlgorithmX2 2014-06-04 00:02:57 -05:00
parent 885bdbf9d5
commit ba761aaa29

View file

@ -96,6 +96,8 @@ public class ApiPart implements IPartHelper
}
public ClassNode getReader(String name) throws IOException
{
try
{
ClassReader cr;
String path = "/" + name.replace( ".", "/" ) + ".class";
@ -105,6 +107,11 @@ public class ApiPart implements IPartHelper
cr.accept( cn, ClassReader.EXPAND_FRAMES );
return cn;
}
catch (Throwable t)
{
throw new RuntimeException( "Error loading " + name, t );
}
}
public Class getCombinedInstance(String base)
{
@ -167,6 +174,7 @@ public class ApiPart implements IPartHelper
}
catch (Throwable t)
{
AELog.warning( "Error loading " + name );
AELog.error( t );
// throw new RuntimeException( t );
}