Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrompterException (0.05 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. 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