Lib.Krakatau.error.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krakatau-lib Show documentation
Show all versions of krakatau-lib Show documentation
Assembler, disassebmler, decompiler and compiler tools library for Java.
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