Enerjy has a problem with this line of code:
private static List<ParseTree> getTestTrees(Xml test) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException {
This is the warning:
(Baseline) JAVA0126 Method 'getTestTrees' declares unchecked exception 'IllegalArgumentException' in throws
How can I fix this? What is the problem? What does it mean for an exception to be "unchecked"?
