Class: Texd::Client::RenderError
- Defined in:
- lib/texd/client.rb
Overview
Generic error for execptions caused by the render endpoint. You will likely receive a subclass of this error, but you may rescue from this error, if you’re not interested in the details.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#details ⇒ Object
readonly
additional details.
Instance Method Summary collapse
-
#initialize(message, details: nil) ⇒ RenderError
constructor
A new instance of RenderError.
Constructor Details
#initialize(message, details: nil) ⇒ RenderError
Returns a new instance of RenderError.
16 17 18 19 |
# File 'lib/texd/client.rb', line 16 def initialize(, details: nil) @details = details super() end |
Instance Attribute Details
#details ⇒ Object (readonly)
additional details
14 15 16 |
# File 'lib/texd/client.rb', line 14 def details @details end |