class FrozenVariableError

Public Class Methods

new(msg = "Cannot modify frozen variable") click to toggle source
Calls superclass method
# File lib/arendelle.rb, line 36
def initialize(msg = "Cannot modify frozen variable")
  super(msg)
end