class DTK::Client::DSLParsing

Public Class Methods

new(base_json_error,file_path=nil) click to toggle source
Calls superclass method
# File lib/error.rb, line 32
def initialize(base_json_error,file_path=nil)
  super(err_msg(base_json_error,file_path))
end

Private Instance Methods

err_msg(base_json_error,file_path=nil) click to toggle source
# File lib/error.rb, line 36
def err_msg(base_json_error,file_path=nil)
  "#{base_json_error}: #{file_path}"
end