Ignore:
Timestamp:
09/05/18 12:42:29 (6 years ago)
Author:
bln4
Message:

org.expeditee.gui.FrameIO ->

Changed a catch(Exception e) to a catch(IOException e) so that it was more specific.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/FrameIO.java

    r1102 r1105  
    15941594         */
    15951595        public static void copyFile(String existingFile, String newFileName)
    1596                         throws Exception {
     1596                        throws IOException {
    15971597                FileInputStream is = new FileInputStream(existingFile);
    15981598                FileOutputStream os = new FileOutputStream(newFileName, false);
Note: See TracChangeset for help on using the changeset viewer.