Sha256: 696cf119383a26b731c7c150926a54f419d0cbd4ca3d4ba7cd9e4a2e8b68dded

Contents?: true

Size: 831 Bytes

Versions: 1

Compression:

Stored size: 831 Bytes

Contents

# frozen_string_literal: true

module Xip
  class Errors < StandardError

    class ConfigurationError < Errors
    end

    class ReplyFormatNotSupported < Errors
    end

    class ServiceImpaired < Errors
    end

    class ServiceError < Errors
    end

    class ServiceNotRecognized < Errors
    end

    class ControllerRoutingNotImplemented < Errors
    end

    class UndefinedVariable < Errors
    end

    class RedisNotConfigured < Errors
    end

    class InvalidStateTransition < Errors
    end

    class ReplyNotFound < Errors
    end

    class UnrecognizedMessage < Errors
    end

    class FlowError < Errors
    end

    class FlowDefinitionError < Errors
    end

    class InvalidSessionID < Errors
    end

    class UserOptOut < Errors
    end

    class ReservedHomophoneUsed < Errors
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xip-2.0.0.beta2 lib/xip/errors.rb