- Sort Score
- Result 10 results
- Languages All
Results 1071 - 1080 of 1,473 for because (0.09 sec)
-
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) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLookup.java
} @Override public <T> Optional<T> lookupOptional(Class<T> type) { try { return Optional.of(container.lookup(type)); } catch (ComponentLookupException e) { if (e.getCause() instanceof NoSuchElementException) { return Optional.empty(); } throw new LookupException(e); } } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
internal/s3select/json/errors.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package json 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.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/OplockTests.java
tree.send(create2); } catch ( Exception e ) { // timeout is expected for now as we do not ack the break if ( ! ( e.getCause() instanceof RequestTimeoutException ) ) { throw e; } } } else if ( trans.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbAuthException.java
super(errcode, null); } SmbAuthException ( String message ) { super(message); } SmbAuthException ( String message, Throwable cause ) { super(message, cause); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
public FessSystemException(final String message, final Throwable cause) { super(message, cause); } public FessSystemException(final String message) { super(message); } public FessSystemException(final Throwable cause) { super(cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulationException.java
super(message); } public MavenExecutionRequestPopulationException(Throwable cause) { super(cause); } public MavenExecutionRequestPopulationException(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) -
impl/maven-core/src/main/java/org/apache/maven/MavenExecutionException.java
this.pomFile = pomFile; } public MavenExecutionException(String message, File pomFile, ProjectBuildingException cause) { super(message, cause); this.pomFile = pomFile; } public MavenExecutionException(String message, Throwable cause) { super(message, cause); } public File getPomFile() { return pomFile; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
private long currentTimeNanos() { return ticker.read(); } private void alertListenerIfPresent(K key, V value, RemovalCause cause) { if (removalListener != null) { removalListener.onRemoval(RemovalNotification.create(key, value, cause)); } } @SuppressWarnings("GoodTime") // timestamps as numeric primitives private V load(K key) throws ExecutionException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 27 19:19:19 UTC 2024 - 21.6K bytes - Viewed (0) -
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 * 解析できなかった文字列 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0)