Wrong call.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1073772 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-02-23 15:15:19 +00:00
parent 26a610776c
commit a44563d202
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public class MathIllegalStateException extends MathRuntimeException {
public MathIllegalStateException(Localizable specific,
Localizable general,
Object ... args) {
super(null, null, specific, general, args);
super(null, specific, general, args);
}
/**
@ -65,7 +65,7 @@ public class MathIllegalStateException extends MathRuntimeException {
*/
public MathIllegalStateException(Localizable specific,
Object ... args) {
super(null, specific, LocalizedFormats.ILLEGAL_STATE, args);
this(specific, LocalizedFormats.ILLEGAL_STATE, args);
}
/**