nvbn/thefuck

View on GitHub
thefuck/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
class EmptyCommand(Exception):
    """Raised when empty command passed to `thefuck`."""


class NoRuleMatched(Exception):
    """Raised when no rule matched for some command."""


class ScriptNotInLog(Exception):
    """Script not found in log."""