class TingYun::Support::Exception::InternalAgentError
This is the base class for all errors that we want to record , It provides the
standard support text at the front of the message, and is used for flagging agent errors when checking queue limits.
Public Class Methods
new(msg=nil)
click to toggle source
Calls superclass method
# File lib/ting_yun/support/exception.rb, line 38 def initialize(msg=nil) super("Ruby agent internal error. Please contact support referencing this error.\n #{msg}") end