class SFRP::Raw::NameError

Public Class Methods

new(target_str) click to toggle source
# File lib/sfrp/raw/exception.rb, line 6
def initialize(target_str)
  @target_str = target_str
end

Public Instance Methods

message() click to toggle source
# File lib/sfrp/raw/exception.rb, line 10
def message
  "Cannot resolve '#{@target_str}'"
end