共计 705 个字符,预计需要花费 2 分钟才能阅读完成。
目录 | 上一节 (4.3 非凡办法) | [下一节 (5 对象模型)]()
4.4 定义异样
用户能够通过类实现自定义异样:
class NetworkError(Exception):
pass
异样类始终继承自 Exception
它们通常是空类。空类外部应用 pass
示意。
你也能够对异样进行分层:
class AuthenticationError(NetworkError):
pass
class ProtocolError(NetworkError):
pass
练习
练习 4.11:自定义异样
通常状况下,为库定义本人的异样是一种良好的习惯。
这样能够更容易辨别异样是常见编程谬误触发的,还是库为了提醒特定问题而无意触发的。
请批改上次练习中的 create_formatter()
函数,当用户提供谬误的格局名时,触发自定义的 FormatError
异样。
示例:
>>> from tableformat import create_formatter
>>> formatter = create_formatter('xls')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "tableformat.py", line 71, in create_formatter
raise FormatError('Unknown table format %s' % name)
FormatError: Unknown table format xls
>>>
目录 | 上一节 (4.3 非凡办法) | [下一节 (5 对象模型)]()
注:残缺翻译见 https://github.com/codists/practical-python-zh
正文完