[TIL] Day 14 — Java 예외처리 + 제네릭 + 컬렉션날짜: 2025-11-06기술 스택: Java 예외처리 Generics Collections부트캠프: 풀스택 개발자 부트캠프 3주차예외처리 (Exception Handling)try { int result = 10 / 0; // ArithmeticException} catch (ArithmeticException e) { System.err.println("0으로 나눌 수 없음: " + e.getMessage());} catch (Exception e) { e.printStackTrace(); // 스택 트레이스 전체 출력} finally { System.out.println("항상 실행");}에러 종류설명컴파일 에러실..