A developer has the following code.
try {
List<String> nameList;
Account a;
String s = a.Name;
nameList.add( s );
}
catch ( ListException le ){
System.debug('List Exception');
}
catch ( NullPointerException npe ){
System.debug('NullPointer Exception');
}
catch ( Exception e ){
System.debug('Generic Exception');
}
What message would be logged?
Selecione uma das seguintes: