python 自定义异常

class CustomException(exceptions.Exception):
	def __init__(self, error_info):
		Exception.__init__(self, error_info)
		self.error = error_info

	def __str__(self):
		return self.error


try:
  xx
except:
  raise CustomException("自定义报错。。。。。。")

  

posted @ 2018-11-09 16:23  ADChen  阅读(370)  评论(0编辑  收藏  举报