Sha256: b2cb7ec1f35b51c6de0660e754d6cf61d8a20259b8cb88e3aeb058f741b39cf7

Contents?: true

Size: 256 Bytes

Versions: 1

Compression:

Stored size: 256 Bytes

Contents

# frozen_string_literal: true
module BitBucket #:nodoc
  # Raised when BitBucket returns the HTTP status code 404
  module Error
    class NotFound < ServiceError
      def initialize(env)
        super(env)
      end
    end
  end # Error
end # BitBucket

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bitbuckets-0.2.0 lib/bitbucket_rest_api/error/not_found.rb