package ch01;
import java.util.logging.Logger;
class Student{
String name;
int grade;
}
public class ExceptionEx4 {
public static void main(String[] args) {
//로그 남겨보기 나중엔 라이브러리를 사용함.
Logger logger = Logger.getLogger("MyLogger");
Student student = null;
// student.name = "111";
try {
student.name= "111";
}catch(NullPointerException e) {
logger.warning("오류발생 : " + e.toString()); //오류가 뜰때 시간과 날짜가 확인이 가능
}
}
}
'Java > Excercise' 카테고리의 다른 글
swing ch02 FlowLayoutEx(배열) (0) | 2021.09.01 |
---|---|
swing ch01 MyFrame (0) | 2021.09.01 |
ExceptionEx3 (0) | 2021.09.01 |
ExceptionEx2 (0) | 2021.09.01 |
ExceptionEx1 (0) | 2021.09.01 |