Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PrompterException (0.81 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/PrompterException.java

     */
    @Experimental
    public class PrompterException extends MavenException {
    
        @Serial
        private static final long serialVersionUID = -3505070928479515081L;
    
        public PrompterException(String message) {
            super(message);
        }
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
        public PrompterException(String message, Exception e) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:48:41 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

         * @throws PrompterException if an exception occurs
         */
        @Nonnull
        String promptForPassword(@Nullable String message) throws PrompterException;
    
        /**
         * Displays a message to the user.
         *
         * @param message the message to display
         * @throws PrompterException if an exception occurs
         */
        void showMessage(@Nullable String message) throws PrompterException;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/internal/compat/interactivity/LegacyPlexusInteractivity.java

                throw new PrompterException("Unable to promptForPassword", e);
            }
        }
    
        @Override
        public void showMessage(String message) throws PrompterException {
            try {
                prompter.showMessage(message);
            } catch (org.apache.maven.api.services.PrompterException e) {
                throw new PrompterException("Unable to showMessage", e);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:48:41 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top