void open_file( fs::ifstream& configuration_file ) const {
     configuration_file.open( path_to_configuration_file );
     if ( !configuration_file.good() ) {
         notify( "Cannot open configuration file '" + path_to_configuration_file.string()
                 + "', probably you have not permissions..." );
     } else {}
 }