Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 271 for getMessager (0.11 sec)

  1. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

        public void transferFailed(TransferEvent event) {
            transferCompleted(event);
    
            println(
                    "transferFailed",
                    event.getException().getClass() + ": " + event.getException().getMessage());
        }
    
        private void transferCompleted(TransferEvent event) {
            downloads.remove(event.getResource());
    
            StringBuilder buffer = new StringBuilder(64);
            pad(buffer, lastLength);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return target.getClass().getSimpleName() + "[" + target.getMessage() + "]";
            }
            final StringBuilder sb = new StringBuilder();
            while (target != null) {
                sb.append(target.getClass().getSimpleName());
                if (target.getMessage() != null) {
                    sb.append("[");
                    sb.append(target.getMessage());
                    sb.append("]");
                }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptInvoker.java

                if (context.invokerRequest.options().showErrors().orElse(false)) {
                    context.terminal.writer().println(e.getMessage());
                    e.printStackTrace(context.terminal.writer());
                } else {
                    context.terminal.writer().println(e.getMessage());
                }
                return ERROR;
            } finally {
                context.terminal.writer().flush();
            }
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java

        private static final long serialVersionUID = 1L;
    
        public UnsupportedEncodingRuntimeException(final UnsupportedEncodingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java

                request.setTrace(trace);
                pomArtifact = resolver.resolveArtifact(session, request).getArtifact();
            } catch (ArtifactResolutionException e) {
                throw new UnresolvableModelException(e.getMessage(), groupId, artifactId, version, e);
            }
    
            return new ArtifactModelSource(pomArtifact.getPath(), groupId, artifactId, version);
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        .setMessage("Non-parseable POM " + modelSource.getLocation() + ": " + e.getMessage())
                        .setException(e));
                throw problems.newModelBuildingException();
            } catch (IOException e) {
                String msg = e.getMessage();
                if (msg == null || msg.isEmpty()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/WebApiException.java

            super(message);
            this.statusCode = statusCode;
        }
    
        public WebApiException(final int statusCode, final Exception e) {
            this(statusCode, e.getMessage(), e);
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                    if (e.getCause() instanceof org.eclipse.aether.transfer.ArtifactNotFoundException) {
                        throw new ArtifactNotFoundException(e.getMessage(), artifact, remoteRepositories, e);
                    } else {
                        throw new ArtifactResolutionException(e.getMessage(), artifact, remoteRepositories, e);
                    }
                }
    
                artifact.selectVersion(result.getArtifact().getVersion());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/exception/SIndexOutOfBoundsExceptionTest.java

        @Test
        public void testSIndexOutOfBoundsExceptionString() {
            final ClIndexOutOfBoundsException clIndexOutOfBoundsException = new ClIndexOutOfBoundsException("hoge");
            assertThat(clIndexOutOfBoundsException.getMessage(), is("hoge"));
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. test-site/app/controllers/Suggest.java

                    json = callback[0] + '(' + json + ')';
                }
                return ok(json);
            } catch (Exception e) {
                return internalServerError(e.getMessage());
            }
        }
    
        public static Result createSuggestFromContent() {
            try {
                long start = System.currentTimeMillis();
                SuggestIndex suggestIndex = new SuggestIndex();
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
Back to top