[강의 정리] Java 예외 - ThrowException

Jeong Woosi·2022년 1월 8일
0

생활코딩 JAVA 예외

목록 보기
7/7
import java.io.FileWriter;
import java.io.IOException;

public class ThrowException {

	public static void main(String[] args) throws IOException {
		FileWriter f = new FileWriter("./data.txt");

	}

}
profile
Let's start to Coding

0개의 댓글