Sha256: e23ba3b3ed6728847235ee5b3eb9799ef88c0a7459f518b038874172ed7e15cf

Contents?: true

Size: 474 Bytes

Versions: 3

Compression:

Stored size: 474 Bytes

Contents

class Expectr
  # Public: Denotes a problem with the running Process associated with a
  # Child Interface
  class ProcessError < StandardError; end

  module Interface
    # Public: Denotes an interface which cannot be killed (e.g. Lambda Interface)
    class NotKillableError < StandardError; end
  end

  class Interpreter
    # Public: Denotes that input was attempted to be sent to a non-existant
    # process.
    class NotRunningError < StandardError; end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
expectr-2.0.2 lib/expectr/error.rb
expectr-2.0.1 lib/expectr/error.rb
expectr-2.0.0 lib/expectr/error.rb