# -*- ruby -*- #encoding: utf-8 # Arborist namespace module Arborist class ClientError < RuntimeError; end class RequestError < ClientError def initialize( reason ) super( "Invalid request (#{reason})" ) end end class ServerError < RuntimeError; end end # module Arborist