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.



176
177
178
# File 'lib/applocale/Util/error_util.rb', line 176

def initialize(path)
  @path = path
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



175
176
177
# File 'lib/applocale/Util/error_util.rb', line 175

def path
  @path
end

Instance Method Details

#messageObject



179
180
181
# File 'lib/applocale/Util/error_util.rb', line 179

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