Sha256: 580dd9e54fccad9b679e5ca4bca60db6bd8ee0591361e10484f3fc0e6d5baaa4

Contents?: true

Size: 1.7 KB

Versions: 4

Compression:

Stored size: 1.7 KB

Contents

module BERTRPC
  class BERTRPCError < StandardError
    attr_accessor :code, :original_exception

    def initialize(msg = nil, klass = nil, bt = [])
      case msg
        when Array
          code, message = msg
        else
          code, message = [0, msg]
      end

      if klass
        self.original_exception = RemoteError.new("#{klass}: #{message}")
        self.original_exception.set_backtrace(bt)
      else
        self.original_exception = self
      end

      self.code = code
      super(message)
    end
  end

  class RemoteError < StandardError

  end

  class ConnectionError < BERTRPCError
    attr_reader :host, :port
    def initialize(host, port)
      @host, @port = host, port
      super("Unable to connect to #{host}:#{port}")
    end
  end

  # Raised when we don't get a response from a server in a timely
  # manner. This typically occurs in spite of a successful connection.
  class ReadTimeoutError < BERTRPCError
    attr_reader :host, :port, :timeout
    def initialize(host, port, timeout)
      @host, @port, @timeout = host, port, timeout
      super("No response from #{host}:#{port} in #{timeout}s")
    end
  end

  # Raised when unexpected EOF is reached on the socket.
  class ReadError < BERTRPCError
    attr_reader :host, :port
    def initialize(host, port)
      @host, @port = host, port
      super("Unable to read from #{host}:#{port}")
    end
  end

  class ProtocolError < BERTRPCError
    NO_HEADER = [0, "Unable to read length header from server."]
    NO_DATA = [1, "Unable to read data from server."]
  end

  class ServerError < BERTRPCError

  end

  class UserError < BERTRPCError

  end

  class ProxyError < BERTRPCError

  end

  class InvalidOption < BERTRPCError

  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
bertrpc-1.3.1 lib/bertrpc/errors.rb
fd-bertrpc-1.3.1 lib/bertrpc/errors.rb
fd-bertrpc-1.3.0 lib/bertrpc/errors.rb
bertrpc-1.3.0 lib/bertrpc/errors.rb