Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 452 for jthrowable (0.37 sec)

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java

                List<String> path,
                Throwable t) {
            super(message, groupId, artifactId, version, type, classifier, remoteRepositories, path, t);
        }
    
        public ArtifactResolutionException(
                String message,
                String groupId,
                String artifactId,
                String version,
                String type,
                String classifier,
                Throwable t) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/log/JulLoggerAdapter.java

        }
    
        @Override
        public void fatal(final String message) {
            logger.logp(Level.SEVERE, sourceClass, null, message);
        }
    
        @Override
        public void fatal(final String message, final Throwable t) {
            logger.logp(Level.SEVERE, sourceClass, null, message, t);
        }
    
        @Override
        public boolean isErrorEnabled() {
            return logger.isLoggable(Level.SEVERE);
        }
    
        @Override
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java

        public SuggestSettingsException(final String msg) {
            super(msg);
        }
    
        public SuggestSettingsException(final Throwable cause) {
            super(cause);
        }
    
        public SuggestSettingsException(final String msg, final Throwable cause) {
            super(msg, cause);
        }
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/DataStoreException.java

        private static final long serialVersionUID = 1L;
    
        public DataStoreException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public DataStoreException(final String message) {
            super(message);
        }
    
        public DataStoreException(final Throwable cause) {
            super(cause);
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

    public class JobProcessingException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public JobProcessingException(final Throwable e) {
            super(e);
        }
    
        public JobProcessingException(final String message, final Throwable e) {
            super(message, e);
        }
    
        public JobProcessingException(final String message) {
            super(message);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MimeTypeException.java

        private static final long serialVersionUID = 1L;
    
        public MimeTypeException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public MimeTypeException(final String message) {
            super(message);
        }
    
        public MimeTypeException(final Throwable cause) {
            super(cause);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/DcerpcException.java

        }
    
        private int error;
        private Throwable rootCause;
    
        DcerpcException(int error) {
            super(getMessageByDcerpcError(error));
            this.error = error;
        }
        public DcerpcException(String msg) {
            super(msg);
        }
        public DcerpcException(String msg, Throwable rootCause) {
            super(msg);
            this.rootCause = rootCause;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractService.java

         * has failed.
         */
        @CheckForNull final Throwable failure;
    
        StateSnapshot(State internalState) {
          this(internalState, false, null);
        }
    
        StateSnapshot(
            State internalState, boolean shutdownWhenStartupFinishes, @CheckForNull Throwable failure) {
          checkArgument(
              !shutdownWhenStartupFinishes || internalState == STARTING,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeploymentException.java

        public ArtifactDeploymentException(String message) {
            super(message);
        }
    
        public ArtifactDeploymentException(Throwable cause) {
            super(cause);
        }
    
        public ArtifactDeploymentException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstallationException.java

        public ArtifactInstallationException(String message) {
            super(message);
        }
    
        public ArtifactInstallationException(Throwable cause) {
            super(cause);
        }
    
        public ArtifactInstallationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top