Exception: Applocale::ErrorUtil::CannotOpenXlsxFile

Inherits:
CommonError
  • Object
show all
Defined in:
lib/applocale/Util/error_util.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from CommonError

#raise, #to_warn

Constructor Details

#initialize(path) ⇒ CannotOpenXlsxFile

Returns a new instance of CannotOpenXlsxFile.



46
47
48
# File 'lib/applocale/Util/error_util.rb', line 46

def initialize(path)
  @path = path
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



45
46
47
# File 'lib/applocale/Util/error_util.rb', line 45

def path
  @path
end

Instance Method Details

#messageObject



49
50
51
# File 'lib/applocale/Util/error_util.rb', line 49

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