Exception: YARD::Handlers::NamespaceMissingError
- Inherits:
-
Parser::UndocumentableError
- Object
- Exception
- Parser::UndocumentableError
- YARD::Handlers::NamespaceMissingError
- Defined in:
- lib/yard/handlers/base.rb
Overview
Raised during processing phase when a handler needs to perform an operation on an object's namespace but the namespace could not be resolved.
Instance Attribute Summary (collapse)
-
- (CodeObjects::Base) object
The object the error occurred on.
Instance Method Summary (collapse)
-
- (NamespaceMissingError) initialize(object)
constructor
A new instance of NamespaceMissingError.
Constructor Details
- (NamespaceMissingError) initialize(object)
Returns a new instance of NamespaceMissingError
17 |
# File 'lib/yard/handlers/base.rb', line 17 def initialize(object) @object = object end |
Instance Attribute Details
- (CodeObjects::Base) object
The object the error occurred on
15 16 17 |
# File 'lib/yard/handlers/base.rb', line 15 def object @object end |