Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 327 for Krause (0.25 sec)

  1. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       * non-nullable {@code cause}, as many users expect to find one.
       */
      public UncheckedExecutionException(@CheckForNull String message, @CheckForNull Throwable cause) {
        super(message, cause);
      }
    
      /**
       * Creates a new instance with {@code null} as its detail message and the given cause. Prefer to
       * provide a non-nullable {@code cause}, as many users expect to find one.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 17:52:19 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java

            super(mojoExecution.getMojoDescriptor(), project, message, cause);
            this.mojoExecution = mojoExecution;
        }
    
        public PluginExecutionException(MojoExecution mojoExecution, MavenProject project, Exception cause) {
            super(mojoExecution.getMojoDescriptor(), project, constructMessage(mojoExecution, cause), cause);
            this.mojoExecution = mojoExecution;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java

            super(project, time);
            this.cause = cause;
        }
    
        /**
         * Gets the cause of the build failure.
         *
         * @return The cause of the build failure or {@code null} if unknown.
         */
        public Throwable getCause() {
            return cause;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataRetrievalException.java

        }
    
        public MetadataRetrievalException(Throwable cause) {
            this(null, cause, null);
        }
    
        public MetadataRetrievalException(String message, Throwable cause) {
            this(message, cause, null);
        }
    
        public MetadataRetrievalException(String message, Throwable cause, ArtifactMetadata artifact) {
            super(message, cause);
    
            this.artifact = artifact;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  5. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java

            this(message, -1, -1, cause);
        }
    
        public ModelParserException(String message, int lineNumber, int columnNumber, Throwable cause) {
            super(message, cause);
            this.lineNumber = lineNumber;
            this.columnNumber = columnNumber;
        }
    
        public ModelParserException(Throwable cause) {
            this(null, cause);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 07:25:10 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

          Throwable cause, Class<X> exceptionClass) throws X {
        if (cause instanceof Error) {
          throw new ExecutionError((Error) cause);
        }
        if (cause instanceof RuntimeException) {
          throw new UncheckedExecutionException(cause);
        }
        throw newWithCause(exceptionClass, cause);
      }
    
      /*
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  7. 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);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionException.java

            super(message);
            // TODO Auto-generated constructor stub
        }
    
        public MetadataResolutionException(Throwable cause) {
            super(cause);
            // TODO Auto-generated constructor stub
        }
    
        public MetadataResolutionException(String message, Throwable cause) {
            super(message, cause);
            // TODO Auto-generated constructor stub
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ParseRuntimeException.java

        private static final long serialVersionUID = -5237329676597387063L;
    
        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public ParseRuntimeException(final ParseException cause) {
            super("ECL0050", asArray(cause), cause);
        }
    
        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param s
         *            解析できなかった文字列
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/settings/SettingsConfigurationException.java

        public SettingsConfigurationException(String message) {
            super(message);
        }
    
        public SettingsConfigurationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public SettingsConfigurationException(String message, Throwable cause, int lineNumber, int columnNumber) {
            super(
                    message
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
Back to top