Sha256: f3a44637debd3a37b7652682ff0a00a740d0b0c7e83ae5e94e43b01dc16ce3bb

Contents?: true

Size: 328 Bytes

Versions: 10

Compression:

Stored size: 328 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

10 entries across 10 versions & 1 rubygems

Version Path
soaspec-0.0.55 lib/soaspec/not_found_errors.rb
soaspec-0.0.54 lib/soaspec/not_found_errors.rb
soaspec-0.0.53 lib/soaspec/not_found_errors.rb
soaspec-0.0.52 lib/soaspec/not_found_errors.rb
soaspec-0.0.51 lib/soaspec/not_found_errors.rb
soaspec-0.0.50 lib/soaspec/not_found_errors.rb
soaspec-0.0.49 lib/soaspec/not_found_errors.rb
soaspec-0.0.48 lib/soaspec/not_found_errors.rb
soaspec-0.0.47 lib/soaspec/not_found_errors.rb
soaspec-0.0.46 lib/soaspec/not_found_errors.rb