Sha256: 0019eca435848df7f1fcea875f2b43a22ab93a64acc957386da4debba15ceadd

Contents?: true

Size: 466 Bytes

Versions: 3

Compression:

Stored size: 466 Bytes

Contents

module Lita
  # The root exception class that all Lita-specific exceptions inherit from.
  # @since 4.0.0
  class Error < StandardError; end

  # An exception raised when a custom validation is set on a configuration attribute that is
  # violated by the default value of the attribute.
  # @since 4.0.0
  class ValidationError < Error; end

  # An exception raised when Lita can't connect to Redis in test mode.
  # @since 4.0.3
  class RedisError < Error; end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lita-4.1.0 lib/lita/errors.rb
lita-4.0.4 lib/lita/errors.rb
lita-4.0.3 lib/lita/errors.rb