vultron/vultron/err.py

5 lines
134 B
Python

class Error(Exception):
def __str__(self):
# FIXME: should show full traceback?
return f"something went wrong: {self.args}"