exceptions[1] = new IllformedLocaleException("msg2", 5);
return exceptions;
}
public boolean hasSameBehavior(Object a, Object b)
{
IllformedLocaleException ifeA = (IllformedLocaleException) a;
IllformedLocaleException ifeB = (IllformedLocaleException) b;
if (ifeA.getErrorIndex() != ifeB.getErrorIndex()) {
return false;
}
return super.hasSameBehavior(a, b);
}