Exception: Gotenberg::Helper::MissingAsset

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gotenberg/helper.rb

Overview

rubocop:disable Style/Documentation

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, message) ⇒ MissingAsset

Returns a new instance of MissingAsset.



33
34
35
36
# File 'lib/gotenberg/helper.rb', line 33

def initialize(path, message)
  @path = path
  super(message)
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



31
32
33
# File 'lib/gotenberg/helper.rb', line 31

def path
  @path
end