class Github::Error::ClientError
def generate_message(attributes)
def generate_message(attributes) @problem = attributes[:problem] @summary = attributes[:summary] @resolution = attributes[:resolution] "\nProblem:\n #{@problem}"+ "\nSummary:\n #{@summary}"+ "\nResolution:\n #{@resolution}" end
def initialize(message)
def initialize(message) super(message) end