Universal_HamRadio_Remote_H.../opus/exceptions.py
2020-09-27 04:40:13 +01:00

11 lines
180 B
Python

from opus.api.info import strerror
class OpusError(Exception):
def __init__(self, code):
self.code = code
def __str__(self):
return strerror(self.code)