class Seatbelt::Errors::PropertyOnClassLevelDefinedError

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

Public Instance Methods

message() click to toggle source
# 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