Exception: Autoproj::ExcludedPackage
- Inherits:
-
ConfigError
- Object
- RuntimeError
- ConfigError
- Autoproj::ExcludedPackage
- Defined in:
- lib/autoproj/exceptions.rb
Overview
Exception raised when a caller requires to use an excluded package
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Attributes inherited from ConfigError
Instance Method Summary collapse
-
#initialize(name) ⇒ ExcludedPackage
constructor
A new instance of ExcludedPackage.
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
#name ⇒ Object (readonly)
Returns the value of attribute name.
52 53 54 |
# File 'lib/autoproj/exceptions.rb', line 52 def name @name end |