All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Lib.Krakatau.error.py Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
class ClassLoaderError(Exception):
    def __init__(self, typen=None, data=""):
        self.type = typen
        self.data = data

        message = "\n{}: {}".format(typen, data) if typen else str(data)
        super(ClassLoaderError, self).__init__(message)

class VerificationError(Exception):
    def __init__(self, message, data=None):
        super(VerificationError, self).__init__(message)
        self.data = data




© 2015 - 2025 Weber Informatics LLC | Privacy Policy