Is there an analogue to Java IllegalStateException in Python?

Question:

IllegalStateException is often used in Java when a method is invoked on an object in inappropriate state. What would you use instead in Python?

Asked By: Tuure Laurinolli

||

Answers:

ValueError sounds appropriate to me:

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.

Answered By: matt b

In Python, that would be ValueError, or a subclass of it.

For example, trying to .read() a closed file raises “ValueError: I/O operation on closed file”.

Answered By: ddaa

ValueError seems more like the equivalent to Java’s IllegalArgumentException.

RuntimeError sounds like a better fit to me:

Raised when an error is detected that doesn’t fall in any of the other categories. The associated value is a string indicating what precisely went wrong.

Most of the time you don’t want to do any special error handling on such an error anyway, so the generic RuntimeError should suffice out of the box.

In case you do want to handle it differently to other errors just derive your own exception from it:

class IllegalStateError(RuntimeError):
    pass
Answered By: roskakori
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.