Exception: Autoproj::ExcludedPackage

Inherits:
ConfigError
  • Object
show all
Defined in:
lib/autoproj/exceptions.rb

Overview

Exception raised when a caller requires to use an excluded package

Instance Attribute Summary collapse

Attributes inherited from ConfigError

#file

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ ExcludedPackage

Returns a new instance of ExcludedPackage.



54
55
56
57
58
# File 'lib/autoproj/exceptions.rb', line 54

def initialize(name)
    @name = name

    super()
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



52
53
54
# File 'lib/autoproj/exceptions.rb', line 52

def name
  @name
end