[Java 소스] 기반 형식 예외 개체를 잡는 catch 블록을 뒤에 두었을 때 //기반 형식 예외 개체를 잡는 catch 블록을 뒤에 두었을 때public class Program { public static void main(String[] args){ int[] arr = new int[3]; System.out.println("배열 생성"); try{ arr[4] = 7; System.out.println("arr[4]에 7 대입"); } catch(ArrayIndexOutOfBoundsException e){ System.out.println("배열의 유효하지 않은 인덱스 사용 예외 발생"); System.out.println(e.toString()); } catch(Exception ex){ ..