class DTK::Client::Error::Usage

Public Class Methods

new(error_msg, _opts = {}) click to toggle source
Calls superclass method
# File lib/client/error/subclasses.rb, line 21
def initialize(error_msg, _opts = {})
  msg_to_pass_to_super = "[ERROR] #{error_msg}"
  super(msg_to_pass_to_super, :backtrace => NO_BACKTRACE)
end