Exception: Autoproj::ExcludedSelection
- Inherits:
-
ConfigError
- Object
- RuntimeError
- ConfigError
- Autoproj::ExcludedSelection
- Defined in:
- lib/autoproj/exceptions.rb
Overview
Exception raised by PackageSelection#filter_excluded_and_ignored_packages when a given selection is completely excluded
Instance Attribute Summary collapse
-
#selection ⇒ Object
readonly
Returns the value of attribute selection.
Attributes inherited from ConfigError
Instance Method Summary collapse
-
#initialize(selection) ⇒ ExcludedSelection
constructor
A new instance of ExcludedSelection.
Constructor Details
#initialize(selection) ⇒ ExcludedSelection
Returns a new instance of ExcludedSelection.
74 75 76 77 78 |
# File 'lib/autoproj/exceptions.rb', line 74 def initialize(selection) @selection = selection super() end |
Instance Attribute Details
#selection ⇒ Object (readonly)
Returns the value of attribute selection.
72 73 74 |
# File 'lib/autoproj/exceptions.rb', line 72 def selection @selection end |