Exception: Saxon::Loader::MissingJarError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/saxon/loader.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ MissingJarError

Returns a new instance of MissingJarError.



23
24
25
# File 'lib/saxon/loader.rb', line 23

def initialize(path)
  @path = path
end

Instance Method Details

#to_sObject



27
28
29
# File 'lib/saxon/loader.rb', line 27

def to_s
  "One of saxon9he.jar, saxon9pe.jar, or saxon9ee.jar must be present in the path ('#{@path}') you supplied, sorry"
end