Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 358 for Message (0.21 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java

        default void add(BuilderProblem.Severity severity, ModelProblem.Version version, String message) {
            add(severity, version, message, null, null);
        }
    
        default void add(
                BuilderProblem.Severity severity, ModelProblem.Version version, String message, InputLocation location) {
            add(severity, version, message, location, null);
        }
    
        default void add(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

        /**
         * The version of the unresolvable model.
         */
        private final String version;
    
        /**
         * Creates a new exception with specified detail message and cause.
         *
         * @param message The detail message, may be {@code null}.
         * @param groupId The group id of the unresolvable model, may be {@code null}.
         * @param artifactId The artifact id of the unresolvable model, may be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultBuilderProblem.java

            this.source = source;
            this.lineNumber = lineNumber;
            this.columnNumber = columnNumber;
            this.exception = exception;
            this.message = message;
            this.severity = severity;
        }
    
        @Override
        public String getSource() {
            return source;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

            super("While configuring wagon for '" + repositoryId + "': " + message, cause);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super("While configuring wagon for '" + repositoryId + "': " + message);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderException.java

        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
        public SettingsBuilderException(String message, Exception e) {
            super(message, e);
            this.problems = List.of();
        }
    
        public SettingsBuilderException(String message, List<BuilderProblem> problems) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClUnsupportedOperationException.java

        }
    
        /**
         * {@link ClUnsupportedOperationException}を作成します。
         *
         * @param message
         *            メッセージ
         */
        public ClUnsupportedOperationException(final String message) {
            super(message);
        }
    
        /**
         * {@link ClUnsupportedOperationException}を作成します。
         *
         * @param message
         *            メッセージ
         * @param cause
         *            元の例外
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

      }
    
      private void expectReturnsTrue(Target target) {
        String message = Platform.format("retainAll(%s) should return true", target);
        assertTrue(message, collection.retainAll(target.toRetain));
      }
    
      private void expectReturnsFalse(Target target) {
        String message = Platform.format("retainAll(%s) should return false", target);
        assertFalse(message, collection.retainAll(target.toRetain));
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

                return asJson(new ApiErrorResponse().message(getMessage(messages -> messages.addErrorsUnauthorizedRequest(GLOBAL)))
                        .status(Status.UNAUTHORIZED).result());
            }
            return super.godHandPrologue(runtime);
        }
    
        protected String getMessage(final VaMessenger<FessMessages> validationMessagesLambda) {
            final FessMessages messages = new FessMessages();
            validationMessagesLambda.message(messages);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorParsingException.java

            String message = "Failed to parse plugin descriptor";
    
            if (plugin != null) {
                message += " for " + plugin.getId();
            }
    
            if (descriptorLocation != null) {
                message += " (" + descriptorLocation + ")";
            }
    
            if (e != null) {
                message += ": " + e.getMessage();
            }
    
            return message;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/PluginException.java

    public class PluginException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public PluginException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public PluginException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 969 bytes
    - Viewed (0)
Back to top