Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ModelTransformerException (0.23 sec)

  1. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformerException.java

    @Experimental
    public class ModelTransformerException extends MavenException {
    
        public ModelTransformerException() {
            this(null, null);
        }
    
        public ModelTransformerException(String message) {
            this(message, null);
        }
    
        public ModelTransformerException(Throwable cause) {
            this(null, cause);
        }
    
        public ModelTransformerException(String message, Throwable cause) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Sep 12 06:15:53 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformer.java

         *
         * @param model the input model
         * @return the transformed model, or the input model if no transformation is needed
         * @throws ModelTransformerException
         */
        @Nonnull
        default Model transformFileModel(@Nonnull Model model) throws ModelTransformerException {
            return model;
        }
    
        /**
         * Apply a transformation on the raw models.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top