Sha256: 92712bad6d50871690f6bb87c18255d69239f49e1e48293d0e1677fed09cb96b

Contents?: true

Size: 379 Bytes

Versions: 1

Compression:

Stored size: 379 Bytes

Contents

module KegbotApi
  # Base error of all KegbotApi errors
  class Error < StandardError
  end

  # Raised when a feature isn't implemented
  class NotImplementedError < Error
  end

  # Raises when a specific resource is not found
  class NotFoundError < Error
  end

  # Raised when an input (user or server) isn't appropriate/expected.
  class InvalidInputError < Error
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kegbot_api-0.0.1 lib/kegbot_api/errors.rb