Exception: Autoproj::PackageSet::NotLoaded
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Autoproj::PackageSet::NotLoaded
- Defined in:
- lib/autoproj/package_set.rb
Overview
Exception raised when an operation that needs the source.yml to be loaded is called before #load_description_file is called
Instance Attribute Summary collapse
-
#package_set ⇒ Object
readonly
Returns the value of attribute package_set.
Instance Method Summary collapse
-
#initialize(package_set) ⇒ NotLoaded
constructor
A new instance of NotLoaded.
Constructor Details
#initialize(package_set) ⇒ NotLoaded
Returns a new instance of NotLoaded.
12 13 14 15 16 |
# File 'lib/autoproj/package_set.rb', line 12 def initialize(package_set) @package_set = package_set super() end |
Instance Attribute Details
#package_set ⇒ Object (readonly)
Returns the value of attribute package_set.
10 11 12 |
# File 'lib/autoproj/package_set.rb', line 10 def package_set @package_set end |