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.



39
40
41
42
43
# File 'lib/dependabot/pull_request_creator.rb', line 39

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.



38
39
40
# File 'lib/dependabot/pull_request_creator.rb', line 38

def cause
  @cause
end

#pull_requestObject (readonly)

Returns the value of attribute pull_request.



38
39
40
# File 'lib/dependabot/pull_request_creator.rb', line 38

def pull_request
  @pull_request
end