Sha256: c3b88cb22d952f58c14b543020bbaab49245829104bde4bf25f19750773db8c2
Contents?: true
Size: 314 Bytes
Versions: 14
Compression:
Stored size: 314 Bytes
Contents
module Shoppe module Errors class InsufficientStockToFulfil < Error def initialize(options) @options = options end def order @options[:order] end def out_of_stock_items @options[:out_of_stock_items] end end end end
Version data entries
14 entries across 14 versions & 1 rubygems