Sha256: 06b82a364a858d0485bf6a0e2c786279acdb39cf2c2f8213a249cf140097702b
Contents?: true
Size: 393 Bytes
Versions: 25
Compression:
Stored size: 393 Bytes
Contents
module DaemonKit # The core of daemon-kit exceptions class Exception < ::StandardError end # Raised when no class is registered to process a ruote workitem class MissingParticipant < Exception; end # Raised when the daemon itself cannot be found. class DaemonNotFound < Exception def initialize( file ) super "No daemon found at the path '#{file}'" end end end
Version data entries
25 entries across 25 versions & 5 rubygems