Exception: GitMaintain::CherryPickErrorException
- Inherits:
-
StandardError
- Object
- StandardError
- GitMaintain::CherryPickErrorException
- Defined in:
- lib/branch.rb
Instance Attribute Summary collapse
-
#commit ⇒ Object
readonly
Returns the value of attribute commit.
Instance Method Summary collapse
-
#initialize(str, commit) ⇒ CherryPickErrorException
constructor
A new instance of CherryPickErrorException.
Constructor Details
#initialize(str, commit) ⇒ CherryPickErrorException
Returns a new instance of CherryPickErrorException.
4 5 6 7 |
# File 'lib/branch.rb', line 4 def initialize(str, commit) @commit = commit super(str) end |
Instance Attribute Details
#commit ⇒ Object (readonly)
Returns the value of attribute commit.
8 9 10 |
# File 'lib/branch.rb', line 8 def commit @commit end |