开发者

Is there an analogue to Java IllegalStateException in Python?

IllegalStateException is often used in Java when a method is invo开发者_JAVA百科ked on an object in inappropriate state. What would you use instead in Python?


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".


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


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜