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.



68
69
70
# File 'lib/applocale/Util/error_util.rb', line 68

def initialize(path)
  @path = path
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



67
68
69
# File 'lib/applocale/Util/error_util.rb', line 67

def path
  @path
end

Instance Method Details

#messageObject



71
72
73
# File 'lib/applocale/Util/error_util.rb', line 71

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