推荐学习书目
› 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 · Mar 10, 2021 · 2298 views
    This topic created in 2026 days ago, the information mentioned may be changed or developed.

    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

    No Comments Yet
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   2575 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 34ms · UTC 09:51 · PVG 17:51 · LAX 02:51 · JFK 05:51
    ♥ Do have faith in what you're doing.