class SolidusShipstation::ShipmentNotFoundError

Public Class Methods

new(shipment_number, *args) click to toggle source
Calls superclass method
# File lib/solidus_shipstation/errors.rb, line 13
def initialize(shipment_number, *args)
  super("Could not find shipment with number #{shipment_number}", *args)
end