Finish initializing the BackupRequest object.
note: this method is called by the super class...
super.init();
if(!FileUtils.safeIsDirectory(request.domainDir))
throw new BackupException("backup-res.NoDomainDir", request.domainDir);
request.backupDir = new File(request.domainDir, Constants.BACKUP_DIR);
// It's a warning to not exist...
if(!FileUtils.safeIsDirectory(request.backupDir))
throw new BackupWarningException("backup-res.NoBackupDir", request.backupDir);