Exception: Seatbelt::Errors::PropertyOnClassLevelDefinedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/seatbelt/errors/errors.rb

Overview

Public: Will be raised if a property is tried to define on a class level interface.

Instance Method Summary collapse

Instance Method Details

#messageObject



127
128
129
130
131
132
# File 'lib/seatbelt/errors/errors.rb', line 127

def message
  <<-MESSAGE.gsub(/^\s+/, "")
    You try to define a property at class level interface. That is not
      supported by now but maybe in future version.
  MESSAGE
end