vote up -3 vote down star

I have an if condition which checks for value and the it throws new NumberFormatException

Is there any other way to code this

if(foo)

{

throw new NumberFormatException

} ..

Catch(NumberFormatException exc) {

some msg...

}

flag

32% accept rate
Might want to use the 'code' markup to make your question a little clearer to read. – itsmatt Sep 30 '08 at 11:52
This question is not very clear you need to rephrase your question – Paul Whelan Sep 30 '08 at 11:53
is the throw in a try? – Midhat Sep 30 '08 at 11:59
@Midhat: no, but there's throe in the try. :-( – Konrad Rudolph Sep 30 '08 at 12:06
What language? Java? C#? – Patrik Sep 30 '08 at 12:14

7 Answers

vote up 6 vote down

GustlyWind, my brain just threw QuestionUnreableException. Please clarify.

link|flag
Clever ! Plus one ! – wcm Sep 30 '08 at 12:09
vote up 4 vote down

If you are doing something such as this:

try
{
   // some stuff
   if (foo)
   {
      throw new NumberFormatException();
   }
}
catch (NumberFormatException exc)
{
   do something;
}

Then sure, you could avoid the exception completely and do the 'do something' part inside the conditional block.

link|flag
vote up 1 vote down

If your aim is to avoid to throw a new exception:

if(foo)
{
  //some msg...
} else
{
  //do something else
}
link|flag
vote up 1 vote down

Don't throw exceptions if you can handle them in another, more elegant manner. Exceptions are expensive and should only be used for cases where there is something going on beyond your control (e.g. a database server is not responding).

If you are trying to ensure that a value is set, and formatted correctly, you should try to handle failure of these conditions in a more graceful manner. For example...

if(myObject.value != null && Checkformat(myObject.Value)
{
    // good to go
}
else
{
    // not a good place to be.  Prompt the user rather than raise an exception?
}
link|flag
vote up 0 vote down

In Java, you can try parsing a string with regular expressions before trying to convert it to a number.

If you're trying to catch your own exception (why???) you could do this:

try { if (foo) throw new NumberFormatException(); }
catch(NumberFormatexception) {/* ... */}
link|flag
You could have fit more code on one line. It's still way to readable (note: sarcasm). :-) – Till Sep 30 '08 at 12:11
vote up 0 vote down

if you are trying to replace the throwing of an exception with some other error handling mechanism your only option is to return or set an error code - the problem is that you then have to go and ensure it is checked elsewhere.

the exception is best.

link|flag
vote up 0 vote down

If you know the flow that will cause you to throw a NumberFormatException, code to handle that case. You shouldn't use Exception hierarchies as a program flow mechanism.

link|flag

Your Answer

Get an OpenID
or

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