Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 304 for caniuse (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    reference = MojoExecutionException.class.getSimpleName();
    
                    Throwable cause = exception.getCause();
                    if (cause instanceof IOException) {
                        cause = cause.getCause();
                        if (cause instanceof ConnectException) {
                            reference = ConnectException.class.getSimpleName();
                        }
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

        }
    
        public ContainerNotAvailableException(final String componentName, final Throwable cause) {
            super(componentName + " is not available.", cause);
            this.componentName = componentName;
        }
    
        public ContainerNotAvailableException(final Throwable cause) {
            super("Container is not avaiable.");
            this.componentName = "container";
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblemCollector.java

         * @param column The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param cause The cause of the problem, may be {@code null}.
         */
        void add(SettingsProblem.Severity severity, String message, int line, int column, Exception cause);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenSimpleLogger.java

            }
            for (Throwable se : t.getSuppressed()) {
                writeThrowable(se, stream, "Suppressed", prefix + "    ");
            }
            Throwable cause = t.getCause();
            if (cause != null && t != cause) {
                writeThrowable(cause, stream, "Caused by", prefix);
            }
        }
    
        private void writeThrowable(Throwable t, PrintStream stream, String caption, String prefix) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

         * @param argTypes
         *            引数型の並び
         * @param cause
         *            原因となった例外
         */
        public NoSuchMethodRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] argTypes,
                final Throwable cause) {
            super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause);
            this.targetClass = targetClass;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferFailedException.java

        public ArtifactTransferFailedException(final String message) {
            super(message);
        }
    
        public ArtifactTransferFailedException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/InternalErrorException.java

     * Signals an internal error in Maven itself, e.g. a programming bug.
     *
     */
    public class InternalErrorException extends MavenExecutionException {
    
        public InternalErrorException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverException.java

    @Experimental
    public class DependencyResolverException extends MavenException {
    
        private static final long serialVersionUID = 1101171569179057614L;
    
        public DependencyResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 08 08:42:44 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverException.java

    /**
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public class VersionRangeResolverException extends MavenException {
        public VersionRangeResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 08 09:10:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverException.java

    /**
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public class VersionResolverException extends MavenException {
        public VersionResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 08 09:10:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top