Error name | error contents |
---|---|
NameError | Undefined local variables/constant(Or private method)I'm calling |
NoMethodError | Occurs when calling a method that does not exist |
TypeError | A different type than I expected(class)Is the argument of the method! |
ArgumentError | The number and type of arguments are different |
ZeroDivisionError | I tried to divide an integer by 0 |
SystemStackError | The system stack is overflowing. For example, if you call a method recursively by mistake |
LoadError | Occurs when execution of require or load fails |
SyntaxError | Syntax error. When there is no end |
Recommended Posts