Sha256: 41ed8e7e3dd5075507e5ac0582e2e54786417385a7b4e779453c18eb556c5be8
Contents?: true
Size: 381 Bytes
Versions: 8
Compression:
Stored size: 381 Bytes
Contents
module Vmstator # VmstatError handles the custom error handling for this Gem # # == Example # # # Typical use case # raise VmstatError("This is a custom error!") # class VmstatError < StandardError attr_reader :problem def initialize(problem="Vmstat eems to have encountered a problem.") @problem = problem super(@problem) end end end
Version data entries
8 entries across 8 versions & 1 rubygems