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

Version Path
fat_table-0.3.0 lib/fat_table/errors.rb
fat_table-0.2.11 lib/fat_table/errors.rb
fat_table-0.2.9 lib/fat_table/errors.rb
fat_table-0.2.8 lib/fat_table/errors.rb
fat_table-0.2.7 lib/fat_table/errors.rb
fat_table-0.2.6 lib/fat_table/errors.rb
fat_table-0.2.4 lib/fat_table/errors.rb
fat_table-0.2.3 lib/fat_table/errors.rb
fat_table-0.2.2 lib/fat_table/errors.rb