- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PrompterException (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/PrompterException.java
* * @since 4.0.0 */ @Experimental public class PrompterException extends MavenException { public PrompterException(String message) { super(message); } /** * @param message the message to give * @param e the {@link Exception} */ public PrompterException(String message, Exception e) { super(message, e); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 21:57:56 UTC 2025 - 1.3K bytes - Viewed (0) -
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 Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 13:48:41 UTC 2025 - 5.2K bytes - Viewed (0)