Exception: Dependabot::PullRequestCreator::AnnotationError
- Inherits:
-
StandardError
- Object
- StandardError
- Dependabot::PullRequestCreator::AnnotationError
- Defined in:
- lib/dependabot/pull_request_creator.rb
Overview
AnnotationError is raised if a PR was created, but failed annotation
Instance Attribute Summary collapse
-
#cause ⇒ Object
readonly
Returns the value of attribute cause.
-
#pull_request ⇒ Object
readonly
Returns the value of attribute pull_request.
Instance Method Summary collapse
-
#initialize(cause, pull_request) ⇒ AnnotationError
constructor
A new instance of AnnotationError.
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.) @cause = cause @pull_request = pull_request end |
Instance Attribute Details
#cause ⇒ Object (readonly)
Returns the value of attribute cause.
45 46 47 |
# File 'lib/dependabot/pull_request_creator.rb', line 45 def cause @cause end |
#pull_request ⇒ Object (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 |