Exception: Applocale::ErrorUtil::ParseLocalizedError::InvalidFile

Inherits:
ParseLocalizedError show all
Defined in:
lib/applocale/Util/error_util.rb

Instance Attribute Summary collapse

Attributes inherited from ParseLocalizedError

#file, #lang, #row_no

Instance Method Summary collapse

Methods inherited from ParseLocalizedError

#msg, #raise, raiseArr

Methods inherited from CommonError

#raise, #to_warn

Constructor Details

#initialize(path) ⇒ InvalidFile

Returns a new instance of InvalidFile.



203
204
205
# File 'lib/applocale/Util/error_util.rb', line 203

def initialize(path)
  @path = path
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



202
203
204
# File 'lib/applocale/Util/error_util.rb', line 202

def path
  @path
end

Instance Method Details

#messageObject



206
207
208
# File 'lib/applocale/Util/error_util.rb', line 206

def message
  "Can't open file #{self.path}"
end