Exception: Saxon::Loader::MissingJarError
- Inherits:
-
StandardError
- Object
- StandardError
- Saxon::Loader::MissingJarError
- Defined in:
- lib/saxon/loader.rb
Overview
Error raised if Saxon::Loader.load! is called but the path handed in does not contain the Saxon .jars
Instance Method Summary collapse
-
#initialize(path) ⇒ MissingJarError
constructor
A new instance of MissingJarError.
- #to_s ⇒ Object
Constructor Details
#initialize(path) ⇒ MissingJarError
Returns a new instance of MissingJarError.
27 28 29 |
# File 'lib/saxon/loader.rb', line 27 def initialize(path) @path = path end |
Instance Method Details
#to_s ⇒ Object
31 32 33 |
# File 'lib/saxon/loader.rb', line 31 def to_s "One of saxon9he.jar, saxon9pe.jar, or saxon9ee.jar must be present in the path ('#{@path}') you supplied, sorry" end |