Module albow.core.exceptions.CancelException

Source code
from albow.core.exceptions.ApplicationException import ApplicationException


class CancelException(ApplicationException):
    """
    Raising CancelException causes control to be returned silently to the event loop. It can be used to cancel
    an operation, for example in response to cancelling a modal dialog.
    """
    pass

Classes

class CancelException (*args, **kwargs)

Raising CancelException causes control to be returned silently to the event loop. It can be used to cancel an operation, for example in response to cancelling a modal dialog.

Source code
class CancelException(ApplicationException):
    """
    Raising CancelException causes control to be returned silently to the event loop. It can be used to cancel
    an operation, for example in response to cancelling a modal dialog.
    """
    pass

Ancestors