Sha256: ec4b2a6dd46b245688c690d53e0231f51c9d1316a1ae66a5d8f3ff1296c0c700

Contents?: true

Size: 379 Bytes

Versions: 4

Compression:

Stored size: 379 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

4 entries across 4 versions & 2 rubygems

Version Path
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/daemons-1.2.3/lib/daemons/exceptions.rb
daemons-1.2.3 lib/daemons/exceptions.rb
daemons-1.2.2 lib/daemons/exceptions.rb
daemons-1.2.1 lib/daemons/exceptions.rb