class AlmaApiError

Public Class Methods

new(msg) click to toggle source
Calls superclass method
# File lib/alma_rest_api.rb, line 146
def initialize(msg)
  msg = "Unknown error from Alma" if msg.empty?
  super
end