class Uberinstaller::Exception::JsonParseError

Error when parsing JSON file

Public Class Methods

new(file) click to toggle source
# File lib/uberinstaller/exceptions/json_parse_error.rb, line 7
def initialize(file)
  super "#{file} cannot be parsed as is not valid JSON"
end