Sha256: 6326f3ef87f9984d539dfbe96b001c5719444dbab4bfd68729b3594852cb1809

Contents?: true

Size: 677 Bytes

Versions: 2

Compression:

Stored size: 677 Bytes

Contents

class Kookaburra
  # Raised when accessing unknown mental model data
  # @private
  class UnknownKeyError < ArgumentError; end

  # Raised when there is a problem with the Kookaburra runtime configuration
  # @private
  class ConfigurationError < StandardError; end

  # Raised when an API or UI request results in an enexpected HTTP response
  # @private
  class UnexpectedResponse < RuntimeError; end

  # Raised when an assertion fails inside the drivers.
  # @private
  class AssertionFailed < RuntimeError; end

  # Raised when calling `api` or `ui` test helpers and named applications are
  # configured
  # @private
  class AmbiguousDriverError < StandardError; end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kookaburra-3.0.1 lib/kookaburra/exceptions.rb
kookaburra-3.0.0 lib/kookaburra/exceptions.rb