python自定義異常

class clientError(Exception): def init(self,information): super().init(self) self.error=information def str(self): return self.error 測試異常 from 自定義異常 import clientError if name=='main': try: raise clientError('客戶端異常') except clientError as e: print(e)測試

相關文章
相關標籤/搜索