Sha256: 2320e7cbf0165e810b7a7985c0f9901edf1691b28c72136ab408518e97058eb4
Contents?: true
Size: 294 Bytes
Versions: 16
Compression:
Stored size: 294 Bytes
Contents
module BrInvoicesPdf module Errors class InvalidDocumentType < StandardError attr_reader :type def initialize(type) super("`#{type.inspect}` is not supported. Must be one of #{BrInvoicesPdf.supported_document_types}") @type = type end end end end
Version data entries
16 entries across 16 versions & 1 rubygems