Sha256: cbb3a8fdcd89322d96c687716257cd71129ecc5a8db797bc095da1e55658bc62
Contents?: true
Size: 505 Bytes
Versions: 5
Compression:
Stored size: 505 Bytes
Contents
# frozen_string_literal: true module RocketfuelApi class Error < StandardError; end class BadRequest < Error; end class Unauthorized < Error; end class Forbidden < Error; end class NotFound < Error; end class NotAcceptable < Error; end class UnprocessableEntity < Error; end class InternalServerError < Error; end class NotImplemented < Error; end class BadGateway < Error; end class ServiceUnavailable < Error; end class InvalidJson < Error; end class Timeout < Error; end end
Version data entries
5 entries across 5 versions & 1 rubygems