Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 989 for scouse (0.11 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumentationException.java

     */
    @Deprecated
    public class ExpressionDocumentationException extends Exception {
        static final long serialVersionUID = 1;
    
        public ExpressionDocumentationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public ExpressionDocumentationException(String message) {
            super(message);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

                        }
                    };
                }
            };
        }
    
        /** Indicates the phase is after the phases for the dependencies in the given scope */
        static Lifecycle.Link dependencies(String scope, String phase) {
            return new Lifecycle.Link() {
                @Override
                public Kind kind() {
                    return Kind.AFTER;
                }
    
                @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/examples/simple-project/pom.xml

      <name>simple-project</name>
      <url>http://maven.apache.org</url>
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.13.1</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      <properties>
        <environment>development</environment>
      </properties>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProviderException.java

    public class TransportProviderException extends MavenException {
    
        @Serial
        private static final long serialVersionUID = -6066070072576465969L;
    
        public TransportProviderException(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)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/IntrospectionException.java

         *
         */
        private static final long serialVersionUID = -6090771282553728784L;
    
        IntrospectionException(String message) {
            super(message);
        }
    
        IntrospectionException(Throwable cause) {
            super(cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeCoreModule.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution.scope.internal;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    
    import org.apache.maven.execution.MojoExecutionListener;
    
    /**
     * MojoExecutionScopeCoreModule
     */
    @Named
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/WebApiException.java

        private final int statusCode;
    
        public int getStatusCode() {
            return statusCode;
        }
    
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
            this.statusCode = statusCode;
        }
    
        public WebApiException(final int statusCode, final String message) {
            super(message);
            this.statusCode = statusCode;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java

    @Deprecated
    public class ProfileActivationException extends Exception {
    
        private static final long serialVersionUID = -90820222109103638L;
    
        public ProfileActivationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public ProfileActivationException(String message) {
            super(message);
        }
    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. impl/maven-core/src/main/java/org/apache/maven/BuildAbort.java

     */
    public class BuildAbort extends Error {
    
        public BuildAbort(String message) {
            super(message);
        }
    
        public BuildAbort(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.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/exception/ConverterRuntimeExceptionTest.java

            final ConverterRuntimeException e = new ConverterRuntimeException("hoge", "xxx", new RuntimeException("cause"));
            System.out.println(e.getMessage());
            assertThat(e.getPropertyName(), is("hoge"));
            assertThat(e.getValue(), is((Object) "xxx"));
            assertThat(e.getCause().getMessage(), is("cause"));
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top