* (e.g. "java.lang.ClassNotFoundException").
*
* @return an array of parameter type names
*/
public String[] getExceptionNames() {
ExceptionsAttribute a =
(ExceptionsAttribute)getAttribute("Exceptions");
if (a == null) {
return new String[0];
}
return a.getExceptionNames();
}