Sha256: 2fd517b83d2d2569d95691c1aeac38611a586844574eafc4054c32d3a39e4424
Contents?: true
Size: 325 Bytes
Versions: 23
Compression:
Stored size: 325 Bytes
Contents
# frozen_string_literal: true 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
23 entries across 23 versions & 1 rubygems