# frozen_string_literal: true module BitBucket #:nodoc # Raised when BitBucket returns the HTTP status code 404 module Error class ClientError < BitBucketError attr_reader :problem, :summary, :resolution def initialize(message) super(message) end def generate_message(attributes) "\nProblem:\n #{attributes[:problem]}" \ "\nSummary:\n #{attributes[:summary]}" \ "\nResolution:\n #{attributes[:resolution]}" end end end # Error end # BitBucket