Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UnknownPluginException (0.37 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/UnknownPluginException.java

     */
    package org.gradle.api.plugins;
    
    import org.gradle.api.InvalidUserDataException;
    
    /**
     * A {@code UnknownPluginException} is thrown when an unknown plugin id is provided. 
     */
    public class UnknownPluginException extends InvalidUserDataException {
        public UnknownPluginException(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 947 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginContainer.java

            if (plugin == null) {
                throw new UnknownPluginException("Plugin with id " + id + " has not been used.");
            }
            return plugin;
        }
    
        @Override
        public Plugin getAt(String id) throws UnknownPluginException {
            return getPlugin(id);
        }
    
        @Override
        public <P extends Plugin> P getAt(Class<P> type) throws UnknownPluginException {
            return getPlugin(type);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 30 13:07:05 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginContainer.java

         *
         * @param id The id of the plugin
         * @throws UnknownPluginException When there is no plugin with the given id.
         */
        Plugin getPlugin(String id) throws UnknownPluginException;
    
        /**
         * Returns a plugin with the specified type if this plugin has been used in the project.
         *
         * @param type The type of the plugin
         * @throws UnknownPluginException When there is no plugin with the given type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolutionResult.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.use.resolve.internal;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.plugins.UnknownPluginException;
    import org.gradle.internal.exceptions.LocationAwareException;
    import org.gradle.plugin.management.internal.PluginRequestInternal;
    import org.gradle.util.internal.TextUtil;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top