Exception: Sprinkle::VerificationFailed
- Inherits:
-
Exception
- Object
- Exception
- Sprinkle::VerificationFailed
- Defined in:
- lib/sprinkle/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.
107 108 109 110 111 112 |
# File 'lib/sprinkle/verify.rb', line 107 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.
105 106 107 |
# File 'lib/sprinkle/verify.rb', line 105 def description @description end |
#package ⇒ Object
Returns the value of attribute package.
105 106 107 |
# File 'lib/sprinkle/verify.rb', line 105 def package @package end |