V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
codists
V2EX  ›  Python

翻译:《实用的 Python 编程》04_04_Defining_exceptions

  •  
  •   codists ·
    codists · 2021-03-10 22:25:37 +08:00 · 1249 次点击
    这是一个创建于 1135 天前的主题,其中的信息可能已经有所发展或是发生改变。

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

    注:完整翻译见 https://github.com/codists/practical-python-zh

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2942 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 11:16 · PVG 19:16 · LAX 04:16 · JFK 07:16
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.