class DTK::Client::Error::Client
Public Class Methods
label(*_args)
click to toggle source
Calls superclass method
DTK::Client::Error::InternalError::label
# File lib/client/error/subclasses.rb, line 61 def self.label(*_args) super(:client) end
new(error_msg, opts = {})
click to toggle source
opts can have keys
:backtrace
Calls superclass method
DTK::Client::Error::InternalError::new
# File lib/client/error/subclasses.rb, line 58 def initialize(error_msg, opts = {}) super(error_msg, opts.merge(:where => :client)) end