Sha256: a894508784902c7dca21e6936a829a1f7aa090cb9ea1995e8e885c0373595ca2
Contents?: true
Size: 474 Bytes
Versions: 9
Compression:
Stored size: 474 Bytes
Contents
module FatTable # Raised when the caller of the code made an error that the caller can # correct. class UserError < StandardError; end # Raised when the programmer made an error that the caller of the code # cannot correct. class LogicError < StandardError; end # Raised when an external resource is not available due to caller or # programmer error or some failure of the external resource to be available. class TransientError < StandardError; end end
Version data entries
9 entries across 9 versions & 1 rubygems