Fix noisy exception logging

This commit is contained in:
Christian 2012-12-30 21:30:48 -05:00
parent e4a1693495
commit e2dc263f12
1 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,10 @@ public class EventTransformer implements IClassTransformer
}
return bytes;
}
catch (ClassNotFoundException ex)
{
// Discard silently- it's just noise
}
catch (Exception e)
{
e.printStackTrace();