首先说一个发现:
try:
抛错误,抛异常
except Exception as e:
都被这里抓住了
except Error as e:
这里啥事都没了
然后,说说Exception as e的e。e可谓是格式五花八门。
比如:
再比如:
这么不严谨的格式,实在没办法直接从e.Name或e.Message等之类的主流方式来一步到位地抓出ErrorTitle与ErrorDetail。那怎么办呢?进行了各种尝试后,发现个好方法:
str(type(e)) 可以抓出Title,而且还包含Type。而str(e)则可以抓出Detail。
因此,诞生了格式化工具:
ExceptionX_Result.py:
class ExceptionX_Result:
exceptionType = None
exceptionTitle = None
exceptionDetail = None;
ExceptionX.py:
from ExceptionX_Result import ExceptionX_Result class ExceptionX: @staticmethod
def ToString(arg_exception) :
result = ExceptionX_Result
tempStr = str(type(arg_exception))
tempStrArray = tempStr.split("'")
result.exceptionTitle = tempStrArray[1]
result.exceptionType = tempStrArray[0][1:]
result.exceptionDetail = str(arg_exception)
if result.exceptionDetail[0] == "<":
if result.exceptionDetail[result.exceptionDetail.__len__() - 1] == ">" :
result.exceptionDetail = result.exceptionDetail[1:result.exceptionDetail.__len__() - 1]
return result;
用法例子:
try:
value = /
except Exception as e:
#在下面这行下一个断点,然后看看tempExceptionInfo的结构吧~
tempExceptionInfo = ExceptionX.ToString(e)
呵呵,终于统一了。最终效果:
再如: