Leon the start point

PostsAbout

8.10. Enriching Exceptions with Notes

2025년 12월 15일1 min read

  • official_ref

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")
	raise

← python 3.14으로


그래프 뷰

  • python 3.14

Created with Quartz v4.5.2 © 2026

  • GitHub
  • Discord Community