# coding: utf-8

class Error(Exception):
    @staticmethod
    def fmt_error(err: Exception):
        return '%s(%s)' % (type(err).__name__, err)
