ex_twiml v2.1.2
ExTwiml.ReservedNameError
exception
This error is thrown if you try to use TwiML verb name as a variable name in your twiml
block.
Example
This code will raise the error, because number
is a reserved name.
twiml do
Enum.each [1, 2], fn(number) ->
# ...
end
end