Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,064 for mesiace (0.03 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java

        public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
            super(repositoryId, message, cause);
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super(repositoryId, message);
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/LocalRepositoryNotAccessibleException.java

    @Deprecated
    public class LocalRepositoryNotAccessibleException extends IOException {
    
        public LocalRepositoryNotAccessibleException(String message, Throwable cause) {
            super(message);
            initCause(cause);
        }
    
        public LocalRepositoryNotAccessibleException(String message) {
            super(message);
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResourceException.java

        /**
         * Creates a resource exception
         *
         * @param message the error message
         * @param errorCode the SMB error code
         * @param resourceType the type of resource
         */
        public SmbResourceException(String message, int errorCode, ResourceType resourceType) {
            super(message, errorCode, Severity.TRANSIENT, Category.RESOURCE);
            this.resourceType = resourceType;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/SearchQueryException.java

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

         *
         * @param message
         *            Message
         */
        public void warn(final Object message) {
            log.warn(message.toString());
        }
    
        /**
         * Outputs ERROR information.
         *
         * @param message
         *            Message
         * @param throwable
         *            Exception
         */
        public void error(final Object message, final Throwable throwable) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

                String message = error.getMessage();
                if (message != null) {
                    message = message.toLowerCase();
                    // Connection reset, network unreachable, etc. might be temporary
                    return message.contains("connection reset") || message.contains("network unreachable")
                            || message.contains("host unreachable") || message.contains("timeout");
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerException.java

        /**
         *
         */
        @Serial
        private static final long serialVersionUID = 7421964724059077698L;
    
        /**
         * @param message the message of the error
         * @param e {@link Exception}
         */
        public ArtifactDeployerException(String message, Exception e) {
            super(message, e);
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParserException.java

        @Serial
        private static final long serialVersionUID = 1504740189114877333L;
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
        public VersionParserException(String message, Exception e) {
            super(message, e);
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        }
    
        /**
         * Gets the next message in the compound chain.
         *
         * @return the next message or null if this is the last message
         */
        protected ServerMessageBlock2 getNext() {
            return this.next;
        }
    
        /**
         * Sets the next message in the compound chain.
         *
         * @param n the next message
         */
        protected void setNext(final ServerMessageBlock2 n) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/WebApiException.java

        /**
         * Constructs a WebApiException with the specified status code, message, and cause.
         *
         * @param statusCode The HTTP status code
         * @param message The detail message
         * @param cause The cause of this exception
         */
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
            this.statusCode = statusCode;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top