Exception: Rubuild::Build::Dep::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/rubuild/build/dep.rb

Overview

Rubuild::Build::Dep::Error Superclass of errors that get generated during dependancy processing.

Direct Known Subclasses

Action, Build, DepInconsistent, Load, Parameter, Runable

Defined Under Namespace

Classes: Action, Build, DepInconsistent, Load, Parameter, Runable

Instance Method Summary collapse

Constructor Details

#initialize(dep, message) ⇒ Error

Create a Rubuild::Build::Dep::Error exception. Used internally.

dep

The Rubuild::Build::Dep which is the source of the exception.

message

Human-readable string describing the exception.



31
32
33
34
# File 'lib/rubuild/build/dep.rb', line 31

def initialize(dep, message)
  super(message)
  self.rubuild_build_dep_error__dep = dep
end