Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 989 for scouse (0.14 sec)

  1. api/maven-api-di/src/main/java/org/apache/maven/api/di/SessionScoped.java

     * and discarded after session execution completes.
     * <p>
     * A {@code org.apache.maven.api.Session} object is available in the scope of this annotation.
     *
     * @since 4.0.0
     */
    @Scope
    @Documented
    @Retention(RUNTIME)
    @Target({TYPE, METHOD})
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Sep 12 06:14:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

        protected final transient Field targetField;
    
        public BeanFieldSetAccessibleFailureException(final Class<?> componentClass, final Field targetField, final Throwable cause) {
            super("ECL0115", new Object[] { targetField }, cause);
            this.targetClass = componentClass;
            this.targetField = targetField;
        }
    
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Fri Mar 08 13:23:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

        protected final transient Method targetMethod;
    
        public BeanMethodSetAccessibleFailureException(final Class<?> componentClass, final Method targetMethod, final Throwable cause) {
            super("ECL0116", new Object[] { targetMethod }, cause);
            this.targetClass = componentClass;
            this.targetMethod = targetMethod;
        }
    
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Fri Mar 08 13:23:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverException.java

        @Serial
        private static final long serialVersionUID = 1101171569179057614L;
    
        public DependencyResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverException.java

        @Serial
        private static final long serialVersionUID = 4455478418692494141L;
    
        public VersionRangeResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverException.java

    public class VersionResolverException extends MavenException {
    
        @Serial
        private static final long serialVersionUID = -2105433586719466573L;
    
        public VersionResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/InvalidParameterException.java

            super("The " + element + " element in parameter # " + i + " is invalid. It cannot be null.");
        }
    
        public InvalidParameterException(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)
  8. impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionPersistenceException.java

     * @see BuildResumptionDataRepository#persistResumptionData
     */
    public class BuildResumptionPersistenceException extends Exception {
        public BuildResumptionPersistenceException(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)
  9. src/main/java/org/codelibs/fess/exception/QueryParseException.java

    public class QueryParseException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public QueryParseException(final ParseException cause) {
            super(cause);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 931 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/StorageException.java

    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public StorageException(final String message) {
            super(message);
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 970 bytes
    - Viewed (0)
Back to top