Exception: Rubuild::Load::NameSpace::Context::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/rubuild/load/namespace.rb

Overview

Rubuild::Load::NameSpace::Context::Error Superclass of errors generated in context processing.

Direct Known Subclasses

InstanceMethod

Defined Under Namespace

Classes: InstanceMethod

Instance Method Summary collapse

Constructor Details

#initialize(context, message) ⇒ Error

Create a new Rubuild::Load::NameSpace::Context::Error exception.

context

Private execution context associated with the exception.

message

Human-readable string describing the exception.



28
29
30
31
# File 'lib/rubuild/load/namespace.rb', line 28

def initialize(context, message)
  super(message)
  self.rubuild_load_namespace_context_error__context = context
end