Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,062 for mymessage (0.04 sec)

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

         *
         * @param message the exception message
         * @param cause the underlying cause of this exception
         */
        public ThemeException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new ThemeException with the specified message.
         *
         * @param message the exception message
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java

         *
         * @param message the exception message
         * @param cause the underlying cause of this exception
         */
        public ThumbnailGenerationException(final String message, final Exception cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new ThumbnailGenerationException with the specified message.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/ScriptEngineException.java

        /**
         * Constructor.
         * @param message The exception message.
         */
        public ScriptEngineException(final String message) {
            super(message);
        }
    
        /**
         * Constructor.
         * @param message The exception message.
         * @param cause The cause of the exception.
         */
        public ScriptEngineException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/RuntimeCIFSException.java

        /**
         * Constructs a runtime CIFS exception with no detail message.
         */
        public RuntimeCIFSException() {
        }
    
        /**
         * Constructs a runtime CIFS exception with the specified detail message and cause.
         *
         * @param message the detail message
         * @param cause the cause of this exception
         */
        public RuntimeCIFSException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java

        /**
         * Constructs a new SearchEngineClientException with the specified message and cause.
         *
         * @param message the detail message explaining the exception
         * @param cause   the underlying cause of the exception
         */
        public SearchEngineClientException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClIllegalStateException.java

        }
    
        /**
         * Creates a {@link ClIllegalStateException}.
         *
         * @param message
         *            Message
         */
        public ClIllegalStateException(final String message) {
            super(message);
        }
    
        /**
         * Creates a {@link ClIllegalStateException}.
         *
         * @param message
         *            Message
         * @param cause
         *            The original exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) {
            this(message, artifact, remoteRepositories, null);
        }
    
        protected AbstractArtifactResolutionException(
                String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable t) {
            this(
                    message,
                    artifact.getGroupId(),
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Apr 01 21:22:14 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructor.
         * @param message The exception message.
         */
        public ResultOffsetExceededException(final String message) {
            super(message);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java

        public ClIndexOutOfBoundsException() {
            super();
        }
    
        /**
         * Creates a {@link ClIndexOutOfBoundsException}.
         *
         * @param message
         *            Message
         */
        public ClIndexOutOfBoundsException(final String message) {
            super(message);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/CIFSUnsupportedCryptoException.java

         */
        public CIFSUnsupportedCryptoException() {
        }
    
        /**
         * Constructs a CIFS unsupported crypto exception with the specified detail message and cause.
         *
         * @param message the detail message
         * @param cause the cause of this exception
         */
        public CIFSUnsupportedCryptoException(final String message, final Throwable cause) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top