Remove the declaration of thrown exception
Issue-ID: OOM-2526
Signed-off-by: tkogut <tomasz.kogut@nokia.com>
Change-Id: Ie68c35e232504d012d4bf1d73ae775b2c0742d96
     private static final Logger LOGGER = LoggerFactory.getLogger(FileTools.class);
     private static final String BACKUP_EXTENSION = ".bak";
 
-    public void createBackup(File file) throws CreateBackupException {
+    public void createBackup(File file) {
         LOGGER.debug("Try to create a backup of the file: {}", file.getPath());
         File backupFile = new File(file.getAbsolutePath() + BACKUP_EXTENSION);
         try  {