class SFRP::Raw::IllegalSideEffectError
Public Class Methods
new(target_str)
click to toggle source
# File lib/sfrp/raw/exception.rb, line 28 def initialize(target_str) @target_str = target_str end
Public Instance Methods
message()
click to toggle source
# File lib/sfrp/raw/exception.rb, line 32 def message "Don't call side-effect function '#{@target_str}'" end