class Hcheck::Errors::HcheckError
Hcheck
standard error class
Constants
- MSG
Public Class Methods
new(msg = nil)
click to toggle source
Calls superclass method
# File lib/hcheck/errors.rb, line 9 def initialize(msg = nil) message = msg || self.class::MSG Hcheck.logger.error message super(message) end