Exception: Card::Error::Abort

Inherits:
StandardError
  • Object
show all
Defined in:
lib/card/error.rb

Overview

exception class for aborting card actions

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status, msg = "") ⇒ Abort



111
112
113
114
# File 'lib/card/error.rb', line 111

def initialize status, msg=""
  @status = status
  super msg
end

Instance Attribute Details

#statusObject (readonly)

Returns the value of attribute status.



105
106
107
# File 'lib/card/error.rb', line 105

def status
  @status
end

Instance Method Details

#reportObject



107
108
109
# File 'lib/card/error.rb', line 107

def report
  Rails.logger.debug "aborting: #{message}"
end