Exception raised when a command failed because the extension it belongs to was disabled.
The command that failed
The name of the extension which defines the command
Create a new instance for the given command
and the name of the extension
which defines it.
# File lib/hglib.rb, line 92
def initialize( command, extension )
@command = command
@extension = extension
end
Return an message describing what the command and disabled extension were.
# File lib/hglib.rb, line 108
def message
return "`%s`: command is provided by disabled extension `%s`" % [
self.command,
self.extension,
]
end