Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PluginIncompatibleException (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginIncompatibleException.java

    /**
     * Signals a plugin which is not compatible with the current Maven runtime.
     */
    public class PluginIncompatibleException extends PluginManagerException {
    
        public PluginIncompatibleException(Plugin plugin, String message) {
            this(plugin, message, null);
        }
    
        public PluginIncompatibleException(Plugin plugin, String message, Throwable cause) {
            super(plugin, message, cause);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.3K bytes
    - Viewed (0)
Back to top