Sha256: 396a345f43a6c7c756ecfd06b15031d139ec4f191197f34b875cf4a52638d702
Contents?: true
Size: 325 Bytes
Versions: 35
Compression:
Stored size: 325 Bytes
Contents
module Clerk module Errors class Base < StandardError attr_reader :status def initialize(msg, status:) @errors = msg["errors"] @status = status super(msg.merge("status" => status)) end end class Fatal < Base end class Authentication < Base end end end
Version data entries
35 entries across 35 versions & 1 rubygems