Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 737 for caniuse (0.29 sec)

  1. src/main/java/org/codelibs/fess/exception/ScheduledJobException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * @param message Exception message.
         * @param cause Root cause for this exception.
         */
        public ScheduledJobException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * @param message Exception message.
         */
        public ScheduledJobException(final String message) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. futures/failureaccess/src/com/google/common/util/concurrent/internal/InternalFutureFailureAccess.java

     * the License.
     */
    
    package com.google.common.util.concurrent.internal;
    
    
    /**
     * A future that, if it fails, may <i>optionally</i> provide access to the cause of the failure.
     *
     * <p>This class is used only for micro-optimization. Standard {@code Future} utilities benefit from
     * this optimization, so there is no need to specialize methods to return or accept this type
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java

        }
    
        /**
         * @param projectId
         * @param message
         * @param pomFile   pom file location
         * @param cause
         */
        protected ProjectBuildingException(String projectId, String message, File pomFile, Throwable cause) {
            super(createMessage(message, projectId, pomFile), cause);
            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/InvalidKeyRuntimeException.java

        /**
         * {@link InvalidKeyRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public InvalidKeyRuntimeException(final InvalidKeyException cause) {
            super("ECL0068", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/NoSuchPaddingRuntimeException.java

        /**
         * {@link NoSuchPaddingException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public NoSuchPaddingRuntimeException(final NoSuchPaddingException cause) {
            super("ECL0069", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/NamingRuntimeException.java

        /**
         * {@link NamingRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public NamingRuntimeException(final NamingException cause) {
            super("ECL0066", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/MavenExecutionException.java

            this.pomFile = pomFile;
        }
    
        public MavenExecutionException(String message, File pomFile, ProjectBuildingException cause) {
            super(message, cause);
            this.pomFile = pomFile;
        }
    
        public MavenExecutionException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public File getPomFile() {
            return pomFile;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/FileAccessException.java

            super(messageCode, args, cause);
        }
    
        public FileAccessException(final String messageCode, final Object[] args) {
            super(messageCode, args);
        }
    
        public FileAccessException(final String messageCode, final Throwable cause) {
            super(messageCode, new Object[0], cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  9. 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();
                        }
                    }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorException.java

        /**
         * @param message the message you would give for the exception
         * @param cause the cause which is related to the message
         */
        public DependencyCollectorException(String message, Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.5K bytes
    - Viewed (0)
Back to top