}
private void createFile(File file) throws FileCreateException{
try{
if(!file.createNewFile()){
throw new FileCreateException(String.format(ExceptionString.FILECREATEEXCEPTION.getExceptionString(), file.getAbsolutePath()));
}
} catch (IOException e){
throw new FileCreateException(String.format(ExceptionString.FILECREATEEXCEPTION.getExceptionString(), file.getAbsolutePath()));
}
}