Sha256: 7af8701d4e706b7599321e9c328062548eaa32210c5e73214a4e6c4c3151d668

Contents?: true

Size: 332 Bytes

Versions: 32

Compression:

Stored size: 332 Bytes

Contents

# Raised to represent when there's no element at an Xpath
class NoElementAtPath < StandardError
  def initialize(msg = 'No element at path found')
    super
  end
end

# Did not find any element by provided key in the Hash
class NoElementInHash < StandardError
  def initialize(msg = 'No element in Hash found')
    super
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
soaspec-0.0.67 lib/soaspec/not_found_errors.rb
soaspec-0.0.66 lib/soaspec/not_found_errors.rb
soaspec-0.0.65 lib/soaspec/not_found_errors.rb
soaspec-0.0.64 lib/soaspec/not_found_errors.rb
soaspec-0.0.63 lib/soaspec/not_found_errors.rb
soaspec-0.0.62 lib/soaspec/not_found_errors.rb
soaspec-0.0.61 lib/soaspec/not_found_errors.rb
soaspec-0.0.60 lib/soaspec/not_found_errors.rb
soaspec-0.0.59 lib/soaspec/not_found_errors.rb
soaspec-0.0.58 lib/soaspec/not_found_errors.rb
soaspec-0.0.57 lib/soaspec/not_found_errors.rb
soaspec-0.0.56 lib/soaspec/not_found_errors.rb