Exception: Autoproj::ExcludedSelection

Inherits:
ConfigError
  • Object
show all
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

Attributes inherited from ConfigError

#file

Instance Method Summary collapse

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

#selectionObject (readonly)

Returns the value of attribute selection.



72
73
74
# File 'lib/autoproj/exceptions.rb', line 72

def selection
  @selection
end