class SpinRewriter::ApiError

Base class for exceptions in Spin Rewriter module.

Attributes

api_error_msg[R]

Public Class Methods

new(api_error_msg) click to toggle source
Calls superclass method
# File lib/spin_rewriter/errors.rb, line 7
def initialize(api_error_msg)
  super
  # api_error_msg respresents raw error string as returned by API server
  @api_error_msg = api_error_msg
end