Exception: Dependabot::PullRequestCreator::AnnotationError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/dependabot/pull_request_creator.rb

Overview

AnnotationError is raised if a PR was created, but failed annotation

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cause, pull_request) ⇒ AnnotationError

Returns a new instance of AnnotationError.



46
47
48
49
50
# File 'lib/dependabot/pull_request_creator.rb', line 46

def initialize(cause, pull_request)
  super(cause.message)
  @cause = cause
  @pull_request = pull_request
end

Instance Attribute Details

#causeObject (readonly)

Returns the value of attribute cause.



45
46
47
# File 'lib/dependabot/pull_request_creator.rb', line 45

def cause
  @cause
end

#pull_requestObject (readonly)

Returns the value of attribute pull_request.



45
46
47
# File 'lib/dependabot/pull_request_creator.rb', line 45

def pull_request
  @pull_request
end