Sha256: caa9771179351e8971c2aeeb493e9e292441fc29f12b14ea7258fe5ddcde1811

Contents?: true

Size: 259 Bytes

Versions: 1

Compression:

Stored size: 259 Bytes

Contents

# frozen_string_literal: true
module BitBucket #:nodoc
  # Raised when BitBucket returns the HTTP status code 403
  module Error
    class Forbidden < BitBucketError
      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/forbidden.rb