class SFRP::Flat::NodeInvalidLastReferrenceError

Public Class Methods

new(node_str) click to toggle source
# File lib/sfrp/flat/exception.rb, line 36
def initialize(node_str)
  @node_str = node_str
end

Public Instance Methods

message() click to toggle source
# File lib/sfrp/flat/exception.rb, line 40
def message
  "node '#{@node_str}' should be initialized"
end