Sha256: 0e1ee7d02b3e9dcf9f7b5bf50f490509d278530017bc7ad8b362d9dc88f1184a

Contents?: true

Size: 376 Bytes

Versions: 11

Compression:

Stored size: 376 Bytes

Contents

module Daemons
  class Exception < RuntimeError
  end

  class RuntimeException < Exception
  end

  class CmdException < Exception
  end

  class Error < Exception
  end

  class SystemError < Error
    attr_reader :system_error

    def initialize(msg, system_error)
      super(msg)

      @system_error = system_error
    end
  end

  class TimeoutError < Error
  end
end

Version data entries

11 entries across 9 versions & 3 rubygems

Version Path
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.1.0/gems/daemons-1.4.1/lib/daemons/exceptions.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.0.0/gems/daemons-1.4.1/lib/daemons/exceptions.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/2.6.0/gems/daemons-1.4.1/lib/daemons/exceptions.rb
daemons-1.4.1 lib/daemons/exceptions.rb
daemons-1.4.0 lib/daemons/exceptions.rb
daemons-1.3.1 lib/daemons/exceptions.rb
daemons-1.3.0 lib/daemons/exceptions.rb
daemons-1.2.6 lib/daemons/exceptions.rb
daemons-1.2.5 lib/daemons/exceptions.rb
arcabouco-0.2.13 vendor/bundle/gems/daemons-1.2.4/lib/daemons/exceptions.rb
daemons-1.2.4 lib/daemons/exceptions.rb