Sha256: e44ae298d5d67b76dcd6cdc7ee3f29ebda371fca593b1f6cacdcd74dd13378b4
Contents?: true
Size: 263 Bytes
Versions: 27
Compression:
Stored size: 263 Bytes
Contents
# frozen_string_literal: true module Prefab module Errors class UninitializedError < Prefab::Error def initialize(key=nil) message = "Use Prefab.initialize before calling Prefab.get #{key}" super(message) end end end end
Version data entries
27 entries across 27 versions & 1 rubygems