1
2
3
4
5
6
7
8
9
10
import solara @solara.component def Page(): try: raise Exception("Oops, something went wrong") except Exception as e: solara.Card(title="HTTP 500 Internal Server Error") print(e)