当外部硬件连接失败时,我应该抛出什么Python异常?

发布于 2024-11-28 16:37:26 字数 137 浏览 1 评论 0原文

我正在编写一些 Python 代码,它使用一个库通过 USB 与外部硬件进行通信。当硬件库无法连接到设备时,它返回 False - 否则返回 True。

我想检查这个返回并使用它来触发异常 - 更加Pythonic。最合适抛出的异常类型是什么?

I am writing some Python code that uses a library to communicate with an external piece of hardware over USB. When the hardware library is unable to connect to the device, it returns False - otherwise it returns True.

I would like to examine this return and use it to trigger an exception - to be more Pythonic. What would be the most appropriate exception type to throw?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零度℉ 2024-12-05 16:37:26

IOError。来自文档

当 I/O 操作(例如打印语句、内置
open() 函数或文件对象的方法)对于 I/O 相关的失败
原因,例如“找不到文件”或“磁盘已满”。

您可能想将其包装在您自己的异常中,例如:

 class ExternalDeviceNotFound(IOError): pass

并引发它。这为调用代码提供了更多关于如何处理错误的选项。

An IOError. From the docs:

Raised when an I/O operation (such as a print statement, the built-in
open() function or a method of a file object) fails for an I/O-related
reason, e.g., “file not found” or “disk full”.

You may want to wrap this in your own exception like:

 class ExternalDeviceNotFound(IOError): pass

and raise that instead. This gives the calling code more options on how to handle the error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文