All checks were successful
/ job (push) Successful in 1m12s
new development branch from root commit
7 lines
118 B
Python
7 lines
118 B
Python
"""Handle errors."""
|
|
|
|
from rwx import Object
|
|
|
|
|
|
class Error(Object, Exception):
|
|
"""Parent class for all errors."""
|