lib/ruby_isds/utils/errors.rb in ruby_isds-0.12.0 vs lib/ruby_isds/utils/errors.rb in ruby_isds-0.13.0

- old
+ new

@@ -5,6 +5,14 @@ def initialize(param) msg = "Please check if you set #{param}, seems it is missing." super(msg) end end + + class HtmlResponseReceived < Error + def initialize(param) + msg = 'Please check if you set credentials correctly, '\ + "seems like a typo or something:\n #{param}" + super(msg) + end + end end