Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have a set method in which I want to modify some values, if an user enter wrong values which is the best exception to throw to indicate that failure?

public void setSomething(int d) throws ....
{
    if (d < 10 && d >= 0)
    {
        // ok do something
    }
    else throw new ... // throw some exception
}
share|improve this question
3  
In this context, Daniel's answer is correct. However, in general, IllegalArgumentException is the appropriate exception to use, when it doesn't involve numerical ranges. – Chris Jester-Young Sep 7 '11 at 12:54
(I still maintain Daniel's answer is correct, except that we use the Java class IndexOutOfBoundsException instead of the .NET ArgumentOutOfRangeException. <rchern>Details schmetails!</rchern>) – Chris Jester-Young Sep 7 '11 at 13:11

4 Answers

up vote 20 down vote accepted

I'd go for IllegalArgumentException.

Thrown to indicate that a method has been passed an illegal or inappropriate argument.

EDIT

Another note:

Instead of

if (conditionIsTrue) {
  doThis();
  doThat();
} else { 
  throw new IllegalArgumentException();
}

write:

if (conditionNotTrue) {
    throw new IllegalArgumentException();
}

doThis();
doThat();

(Though this advice may be controversial ;-)).

share|improve this answer
5  
+1 for the 'Another note' - this form is called a guard clause. Personally, i would even dispense with the curly brackets in it, and make it a one-liner. – Tom Anderson Sep 7 '11 at 13:17
1  

I agree with @Code Monkey about creating your own InvalidArgumentException, but his implementation doesn't show all the advantages it provides.

1) You can add convenience methods to simplify argument checking. For example:

InvalidArgumentException.throwIfNullOrBlank(someString, "someString");

vs.

if (someString == null || someString.trim().isEmpty()) {
    throw new IllegalArgumentException("someString is null or blank");
}

2) You can write unit tests that confirm which argument was invalid. If you throw IllegalArgumentException, your unit test can't confirm that it was thrown for the reason you expect it to be thrown. You can't even tell that it was thrown by your own code.

try {
    someClass.someMethod(someValue);
    Assert.fail("Should have thrown an InvalidArgumentException");
} catch (InvalidArgumentException e) {
    Assert.assertEquals("someValue", e.getArgumentName());
}

3) You can tell that the exception was thrown from within your own code. (This is a minor point that doesn't have much practical advantage)

share|improve this answer
+1 for the testability. The point about convenience methods seems weak, since you could write a convenience method like that and throw a plain IllegalArgumentException from it. – Tom Anderson Sep 7 '11 at 13:15
+1 Yes, in this particular usage, I can understand creating your own value-added subclass (of IllegalArgumentException, not Exception---I absolutely detest inappropriate use of checked exceptions). – Chris Jester-Young Sep 7 '11 at 13:20
@Tom Yes, you certainly could. I think they're all weak arguments actually but I don't see any strong case for IllegalArgumentException either. – Kevin Stembridge Sep 7 '11 at 13:24

If the number is an index, you could use IndexOutOfBoundsException. Otherwise, as Oliver says, IllegalArgumentException.

Don't be afraid to create a subclass of IllegalArgumentException to be more precise about the problem. Any catch blocks written for IllegalArgumentException will still catch it, but the stack trace will be slightly more informative.

share|improve this answer
+1 100% agree with all of this. – Chris Jester-Young Sep 7 '11 at 13:22

You can create your own InvalidArgumentException class. For example,

class InvalidArgumentException extends Exception
{
  String mistake;

//----------------------------------------------
// Default constructor - initializes instance variable to unknown

  public InvalidArgumentException()
  {
    super();             // call superclass constructor
    mistake = "unknown";
  }


//-----------------------------------------------
// Constructor receives some kind of message that is saved in an instance variable.

  public InvalidArgumentException(String err)
  {
    super(err);     // call super class constructor
    mistake = err;  // save message
  }


//------------------------------------------------  
// public method, callable by exception catcher. It returns the error message.

  public String getError()
  {
    return mistake;
  }
}
share|improve this answer
4  
-1 Why would you create your own exception when the system provides an IllegalArgumentException? Also, no love for making it a checked exception. – Chris Jester-Young Sep 7 '11 at 12:55
@Chris: It works regardless. – 0A0D Sep 7 '11 at 12:57
7  
"Works" isn't good enough. I actually care about taste in code, and duplicating existing system functionality is usually in bad taste. – Chris Jester-Young Sep 7 '11 at 12:58
@Chris: If you say so. – 0A0D Sep 7 '11 at 13:13
3  
Writing your own InvalidArgumentException has some advantages over using the plain exceptions, but this particular example doesn't add any value. See my answer below for why you would want to write your own. – Kevin Stembridge Sep 7 '11 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.