Sha256: 62a64cdf2f825f95385705d51ca37245a08fca8d30734caa84f93757a129bc10
Contents?: true
Size: 696 Bytes
Versions: 27
Compression:
Stored size: 696 Bytes
Contents
module Flydata class AgentError < StandardError def self.description text = <<-EOM Fix the issue and try again. If the problem continues, please contact support@flydata.com EOM flydata_log = File.join(FLYDATA_HOME, 'flydata.log') if File.exists?(flydata_log) text += <<-EOM Also check the Agent log. Log path: #{flydata_log} EOM end text end def description if instance_variable_defined?(:@description) && @description @description else self.class.description end end attr_writer :description end class ServerDataProcessingTimeout < AgentError end class DumpParseError < AgentError end end
Version data entries
27 entries across 27 versions & 1 rubygems