NullPointerException

PHOTO EMBED

Tue Jan 16 2024 06:00:06 GMT+0000 (Coordinated Universal Time)

Saved by @E23CSEU1151 #java

class D
{
    public static void main(String[] args){
        String a= null;
        
        try
        {
            System.out.print(a.toUpperCase());
            System.out.print("error not found");
            
        }
        catch(NullPointerException n )
        {
            System.out.print("error found");
        }
        
        
} 
}
content_copyCOPY