class DTK::Client::Error::DtkNetwork

Public Class Methods

label(*_args) click to toggle source
Calls superclass method
# File lib/client/error/subclasses.rb, line 119
def self.label(*_args)
  super(:dtk_network)
end
new(error_msg, opts = {}) click to toggle source

opts can have keys

:backtrace
Calls superclass method
# File lib/client/error/subclasses.rb, line 115
def initialize(error_msg, opts = {})
  msg_to_pass_to_super = "[DTK NETWORK ERROR] #{error_msg}"
  super(msg_to_pass_to_super, opts.merge(:where => :dtk_network))
end