Class: Texd::Client::ReferenceError

Inherits:
RenderError show all
Defined in:
lib/texd/client.rb

Overview

Raised when the texd server encountered one or more unknown file references.

Instance Attribute Summary collapse

Attributes inherited from RenderError

#details

Instance Method Summary collapse

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(message, references:)
  @references = Set.new(references)
  super(message)
end

Instance Attribute Details

#referencesObject (readonly)

List of unknown file references



62
63
64
# File 'lib/texd/client.rb', line 62

def references
  @references
end