IOFile.copyFile(src, dest) ;
src.close() ;
dest.close() ;
} catch (FileNotFoundException e) {
//TODO Handle exception
throw new KameleonException(e.getMessage()) ;
} catch (IOException e) {
throw new KameleonException(e.getMessage()) ;
}// try
}// for
}