Exception: Rubuild::Build::Dep::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Rubuild::Build::Dep::Error
- Defined in:
- lib/rubuild/build/dep.rb
Overview
Rubuild::Build::Dep::Error Superclass of errors that get generated during dependancy processing.
Defined Under Namespace
Classes: Action, Build, DepInconsistent, Load, Parameter, Runable
Instance Method Summary collapse
-
#initialize(dep, message) ⇒ Error
constructor
Create a Rubuild::Build::Dep::Error exception.
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, ) super() self.rubuild_build_dep_error__dep = dep end |