throw nullpointerexception java code example
Example 1: how to use a try catch for a null pointer exception in java
int n;
n = n + 1;
int n = 5;
n = n + 1;
Example 2: exception is null
try
{
}
catch (WebException webEx)
{
Logger.Log("Error while tried to do something. Error: " + webEx.Message);
}
catch (Exception ex)
{
Logger.Log("Error while tried to do something. Error: " + ex.Message);
}
Example 3: nullpointerexception java
Integer num;
num = new Integer(10);
Example 4: nullpointerexception java
int x;
x = 10;