Class: Texd::Client::ReferenceError
- Inherits:
-
RenderError
- Object
- StandarError
- Error
- RenderError
- Texd::Client::ReferenceError
- Defined in:
- lib/texd/client.rb
Overview
Raised when the texd server encountered one or more unknown file references.
Instance Attribute Summary collapse
-
#references ⇒ Object
readonly
List of unknown file references.
Attributes inherited from RenderError
Instance Method Summary collapse
-
#initialize(message, references:) ⇒ ReferenceError
constructor
A new instance of ReferenceError.
Constructor Details
#initialize(message, references:) ⇒ ReferenceError
Returns a new instance of ReferenceError.
64 65 66 67 |
# File 'lib/texd/client.rb', line 64 def initialize(, references:) @references = Set.new(references) super() end |
Instance Attribute Details
#references ⇒ Object (readonly)
List of unknown file references
62 63 64 |
# File 'lib/texd/client.rb', line 62 def references @references end |