class Crew::Home::UnknownContextError

Attributes

context_name[R]

Public Class Methods

new(context_name) click to toggle source
Calls superclass method
# File lib/crew/home.rb, line 6
def initialize(context_name)
  @context_name = context_name
  super "Could not find context for #{context_name.inspect}"
end