Exception: Pot::VerificationFailed
- Inherits:
-
Exception
- Object
- Exception
- Pot::VerificationFailed
- Defined in:
- lib/pot/verify.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#package ⇒ Object
Returns the value of attribute package.
Instance Method Summary collapse
-
#initialize(package, description) ⇒ VerificationFailed
constructor
A new instance of VerificationFailed.
Constructor Details
#initialize(package, description) ⇒ VerificationFailed
Returns a new instance of VerificationFailed.
105 106 107 108 109 110 |
# File 'lib/pot/verify.rb', line 105 def initialize(package, description) super("Verifying #{package.name} #{description} failed.") @package = package @description = description end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
103 104 105 |
# File 'lib/pot/verify.rb', line 103 def description @description end |
#package ⇒ Object
Returns the value of attribute package.
103 104 105 |
# File 'lib/pot/verify.rb', line 103 def package @package end |