Improved Part API Errors.
This commit is contained in:
parent
885bdbf9d5
commit
ba761aaa29
1 changed files with 15 additions and 7 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue