Skip to content

Commit

Permalink
Merge pull request #276 from dpursehouse/JENKINS-30857
Browse files Browse the repository at this point in the history
Don't used ReflectiveOperationException
  • Loading branch information
rsandell committed Mar 8, 2016
2 parents 963b25f + 7dee0c2 commit b52fd7d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -261,7 +261,7 @@ private void setOrCreateParameterValue(List<ParameterValue> parameters, String v
constructor = clazz.getConstructor(types);
parameter = constructor.newInstance(args);
parameters.add(parameter);
} catch (ReflectiveOperationException ex) {
} catch (Exception ex) {
parameter = null;
}
}
Expand Down

0 comments on commit b52fd7d

Please sign in to comment.