导航:首页 > 编程语言 > python异常类

python异常类

发布时间:2025-03-24 16:19:15

A. python如何自定义异常

8.5. 用户自定义异常
在程序中可以通过创建新的异常类型来命名自己的异常(Python 类的内容请参见 类 )。异常类通常应该直接或间接的从 Exception 类派生,例如:
>>> class MyError(Exception):
... def __init__(self, value):
... self.value = value
... def __str__(self):
... return repr(self.value)
...
>>> try:
... raise MyError(2*2)
... except MyError as e:
... print('My exception occurred, value:', e.value)
...
My exception occurred, value: 4
>>> raise MyError('oops!')
Traceback (most recent call last):
File "
", line 1, in ?
__main__.MyError: 'oops!'
在这个例子中,Exception 默认的 __init__() 被覆盖。新的方式简单的创建 value 属性。这就替换了原来创建 args 属性的方式。
异常类中可以定义任何其它类中可以定义的东西,但是通常为了保持简单,只在其中加入几个属性信息,以供异常处理句柄提取。如果一个新创建的模块中需要抛出几种不同的错误时,一个通常的作法是为该模块定义一个异常基类,然后针对不同的错误类型派生出对应的异常子类:
class Error(Exception):
"""Base class for exceptions in this mole."""
pass
class InputError(Error):
"""Exception raised for errors in the input.
Attributes:
expression -- input expression in which the error occurred
message -- explanation of the error
"""
def __init__(self, expression, message):
self.expression = expression
self.message = message
class TransitionError(Error):
"""Raised when an operation attempts a state transition that's not
allowed.
Attributes:
previous -- state at beginning of transition
next -- attempted new state
message -- explanation of why the specific transition is not allowed
"""
def __init__(self, previous, next, message):
self.previous = previous
self.next = next
self.message = message
与标准异常相似,大多数异常的命名都以 “Error” 结尾。
很多标准模块中都定义了自己的异常,用以报告在他们所定义的函数中可能发生的错误。

阅读全文

与python异常类相关的资料

热点内容
深圳好的程序员培训机构 浏览:923
nmap命令解说 浏览:345
云服务器怎么能关掉 浏览:758
美团app如何下预定单 浏览:618
语法新思维pdf 浏览:143
为什么云服务器桌面太卡 浏览:734
程序员第一年感觉什么都不会 浏览:9
积分方程pdf 浏览:284
解压最后窗口 浏览:767
图书下载pdf 浏览:142
切换到root命令 浏览:733
人脸抠图去重算法 浏览:246
找靓机app如何清空 浏览:418
安卓系统怎么访问ftp服务器地址 浏览:88
java开发游戏服务器 浏览:642
如何找到安卓系统的重要文件 浏览:616
历史流通盘源码 浏览:266
为什么要用服务器集群 浏览:302
排序算法掌握几个 浏览:165
来跟我一起做解压手帐吧 浏览:383