Sha256: 6a7b82b17a3097ef5db539f9cf5581346dbf3aa9c788f635445ea473007625e2

Contents?: true

Size: 330 Bytes

Versions: 15

Compression:

Stored size: 330 Bytes

Contents

# Raised to represent when there's no element at an Xpath
class NoElementAtXpath < StandardError
  def initialize(msg="No element at Xpath 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

15 entries across 15 versions & 1 rubygems

Version Path
soaspec-0.0.45 lib/soaspec/not_found_errors.rb
soaspec-0.0.44 lib/soaspec/not_found_errors.rb
soaspec-0.0.43 lib/soaspec/not_found_errors.rb
soaspec-0.0.42 lib/soaspec/not_found_errors.rb
soaspec-0.0.41 lib/soaspec/not_found_errors.rb
soaspec-0.0.40 lib/soaspec/not_found_errors.rb
soaspec-0.0.39 lib/soaspec/not_found_errors.rb
soaspec-0.0.38 lib/soaspec/not_found_errors.rb
soaspec-0.0.37 lib/soaspec/not_found_errors.rb
soaspec-0.0.36 lib/soaspec/not_found_errors.rb
soaspec-0.0.35 lib/soaspec/not_found_errors.rb
soaspec-0.0.34 lib/soaspec/not_found_errors.rb
soaspec-0.0.33 lib/soaspec/not_found_errors.rb
soaspec-0.0.32 lib/soaspec/not_found_errors.rb
soaspec-0.0.31 lib/soaspec/not_found_errors.rb