9 lines
170 B
Python
9 lines
170 B
Python
|
class EthException(Exception):
|
|||
|
pass
|
|||
|
|
|||
|
|
|||
|
class DefaultErrorParser:
|
|||
|
|
|||
|
def translate(self, error):
|
|||
|
return EthException('default parser code {}'.format(error))
|