I am trying to understand what is a difference between raising a ValueError and an Exception. I have tried both in the same code (even in the same branch) and the result was the same - I got an error message.
I have made a research on this question on SO, but found no discussion on this. Then I read the documentation of exceptions, and found the following definition of ValueError:
Raised when a built-in operation or function receives an argument that has the right type but an inappropriate value, and the situation is not described by a more precise exception such as
IndexError
.
So as I understand, an Exception is a more general term, and ValueError can be applied in some specific cases. But since the results of raising both things are the same, I want to understand, what is the practical meaning of differentiating between a ValueError and an Exception. Python version should be here not relevant. Thank you!
EDIT: Thanks to your answers I got it, what is the difference between both terms in try-exception construct. But how do they differ in case of just raising them, not excepting?
raise Exception('blah')
and
raise ValueError('blah')
Answering to @PeterWood: in both cases I just got the error message "blah", but in one case it was "Exception: blah", and in the second: "ValueError: blah". And I see in this case no practical difference between them both.
ValueError
inherits fromException
. You can decide to trap either onlyValueError
, orException
, that's what exception inheritance is for.In this example:
exception is trapped, all exceptions (except
BaseException
exceptions) are trapped by theexcept
statement.In this other example:
Here, exception is NOT trapped (
TypeError
is notValueError
and does not inherit)You generally use specific exceptions to trap only the ones that are likely to occur (best example is
IOError
when handling files), and leave the rest untrapped. The danger of catching all exceptions is to get a piece of code that does not crash, but does nothing.(editing the answer in response to your edit:) when you raise an exception: you're creating an instance of
Exception
which will be filtered out by futureexcept ValueError:
statements. the message is different because the representation of the exception (when printed) includes the exception class name.You said it, ValueError is a specific Exception. A short example :
If you change "hello world" with an int, print int(42), you will not raise the exception.
You can see doc about exceptions here.