- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 636 for Cause (0.06 sec)
-
src/main/java/jcifs/RuntimeCIFSException.java
} /** * @param message * @param cause */ public RuntimeCIFSException ( String message, Throwable cause ) { super(message, cause); } /** * @param message */ public RuntimeCIFSException ( String message ) { super(message); } /** * @param cause */ public RuntimeCIFSException ( Throwable cause ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformerException.java
public ModelTransformerException(String message) { this(message, null); } public ModelTransformerException(Throwable cause) { this(null, cause); } public ModelTransformerException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:15:53 UTC 2024 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerSystemException.java
public CrawlerSystemException(final String message, final Throwable cause) { super(message, cause); } public CrawlerSystemException(final String message) { super(message); } public CrawlerSystemException(final Throwable cause) { super(cause); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolutionException.java
public GraphConflictResolutionException(String message) { super(message); } public GraphConflictResolutionException(Throwable cause) { super(cause); } public GraphConflictResolutionException(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.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java
} public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) { super(message, artifact, null, cause); } public ArtifactResolutionException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable cause) { super(message, artifact, remoteRepositories, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
* * <ul> * <li>Any {@link ExecutionException} has its <i>cause</i> wrapped in an {@code X} if the cause * is a checked exception, an {@link UncheckedExecutionException} if the cause is a {@code * RuntimeException}, or an {@link ExecutionError} if the cause is an {@code Error}. * <li>Any {@link InterruptedException} is wrapped in an {@code X} (after restoring the
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 64.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/VersionNotFoundException.java
private InvalidVersionSpecificationException cause; public VersionNotFoundException( String projectId, Dependency dependency, File pomFile, InvalidVersionSpecificationException cause) { super( projectId + ", " + formatLocationInPom(dependency) + " " + dependency.getVersion() + ", pom file " + pomFile, cause); this.projectId = projectId;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
internal/s3select/simdj/errors.go
package simdj import "fmt" type s3Error struct { code string message string statusCode int cause error } func (err *s3Error) Cause() error { return err.cause } func (err *s3Error) ErrorCode() string { return err.code } func (err *s3Error) ErrorMessage() string { return err.message }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java
artifact.getDependencyTrail()); } protected ArtifactNotFoundException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable cause) { this( message, artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(), artifact.getType(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0)