+ 3
Common programming exceptions and there meaning
the thread is meant to describe a common exception phrase you have encountered while programming and what it means example 1. angular js error :- "success is not a function" explanation :- when you are implementing a call back function using the "success " and "error" to track response of the function you would most likely get this error if ypu are using a more recent version of Angular greater than v1.4.3 anyone else has a familiar error
1 Respuesta
+ 2
"A fatal exception 0E has occurred"
^Means I was using Windows. :)
JAVA:
"NullPointerException"
Thrown when an application attempts to use null in a case where an object is required. These include:
* Calling the instance method of a null object.
* Accessing or modifying the field of a null object.
* Taking the length of null as if it were an array.
* Accessing or modifying the slots of null as if it were an array.
* Throwing null as if it were a Throwable value.