class Clamp::RuntimeError

abstract command runtime error

Attributes

command[R]

Public Class Methods

new(message, command) click to toggle source
Calls superclass method
# File lib/clamp/errors.rb, line 12
def initialize(message, command)
  super(message)
  @command = command
end