Sha256: fc158c54ecd84e6124513f25a16bfb9307d8774e2ba68d400925acb35ca13e88
Contents?: true
Size: 548 Bytes
Versions: 20
Compression:
Stored size: 548 Bytes
Contents
# frozen_string_literal: true module ProxyRb # Raised if time out occured while fetch resource class UrlTimeoutError < StandardError; end # Raised when resource cannot be downloaded class ResourceNotDownloadableError < StandardError; end # Raised if one tries to use an unknown configuration option class UnknownOptionError < ArgumentError; end # Raised if an event name cannot be resolved class EventNameResolveError < StandardError; end # Raised if given object is not an event class NoEventError < StandardError; end end
Version data entries
20 entries across 20 versions & 1 rubygems