Exception dans la Méthode main

Author:


{filelink=4362}

import java.io.FileInputStream;

public class ExceptionPrincipale {

  public static void main(String[] args) throws Exception
  {
    FileInputStream file = new FileInputStream("ExceptionPrincipale.java");
    file.close();
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *