Sha256: 246e0d2582cbf6e0756ff8bf17b455cd4aa606b192d5b56304eddf0008684f59
Contents?: true
Size: 370 Bytes
Versions: 6
Compression:
Stored size: 370 Bytes
Contents
# -*- ruby -*- #encoding: utf-8 # Arborist namespace module Arborist class ClientError < RuntimeError; end class MessageError < ClientError def initialize( reason ) super( "Invalid message (#{reason})" ) end end class ServerError < RuntimeError; end class NodeError < RuntimeError; end class ConfigError < RuntimeError; end end # module Arborist
Version data entries
6 entries across 6 versions & 1 rubygems