Exception: Applocale::ErrorUtil::SheetNotExist

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(sheetname) ⇒ SheetNotExist

Returns a new instance of SheetNotExist.



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

def initialize(sheetname)
  @sheetname = sheetname
end

Instance Attribute Details

#sheetnameObject

Returns the value of attribute sheetname.



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

def sheetname
  @sheetname
end

Instance Method Details

#messageObject



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

def message
  "Can't find sheet: #{self.sheetname}"
end