「Python」raise 文で例外を出力するサンプル
書式
raise 例外クラス名(引数の値)
raise 文を使って、特定の例外を発生させることができます。
使用例1
# coding: utf-8 #!/usr/bin/python3 try: kk = 20/3 raise Exception('unexception aaa') except Exception as e: print(e)
実行結果
>python test.py
unexception aaa
使用例2
# coding: utf-8 #!/usr/bin/python3 try: cft = 50/5 raise Exception('exception test','error msg') except Exception as e: print(e)
実行結果
>python test.py
('exception test’, 'error msg’)