https://docs.python.org/3/tutorial/errors.html#enriching-exceptions-with-notes
예외 내용에 데이터를 추가로 붙일 수 있다.
try:
raise TypeError("bad type")
except Exception as e:
e.add_note("추가 정보 1")
e.add_note("추가 정보 2")
raisehttps://docs.python.org/3/tutorial/errors.html#enriching-exceptions-with-notes
예외 내용에 데이터를 추가로 붙일 수 있다.
try:
raise TypeError("bad type")
except Exception as e:
e.add_note("추가 정보 1")
e.add_note("추가 정보 2")
raise