Custom Python Exceptions

Custom Python Exceptions

Custom Exceptions #

class ProjectNameError(NameError):
    pass


class UserNameError(NameError):
    pass


class CondaEnvironmentError(RuntimeError):
    pass


class BucketNotDefinedError(NameError):
    pass

Connections

Related tags and posts connected to this entry.