- Sort Score
- Result 10 results
- Languages All
Results 1001 - 1010 of 1,471 for Because (0.12 sec)
-
src/main/java/jcifs/internal/SMBProtocolDecodingException.java
} /** * @param message * @param cause */ public SMBProtocolDecodingException ( String message, Throwable cause ) { super(message, cause); } /** * @param message */ public SMBProtocolDecodingException ( String message ) { super(message); } /** * @param 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/jcifs/CIFSException.java
/** * * @param message * @param cause */ public CIFSException ( String message, Throwable cause ) { super(message, cause); } /** * * @param message */ public CIFSException ( String message ) { super(message); } /** * * @param cause */ public CIFSException ( Throwable 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) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
} /** * Creates a new exception with specified cause * * @param cause * @param groupId * @param artifactId * @param version */ public UnresolvableModelException(Throwable cause, String groupId, String artifactId, String version) { super(cause); this.groupId = groupId; this.artifactId = artifactId;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
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); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/FakeTimeLimiterTest.java
ExecutionException e = assertThrows( ExecutionException.class, () -> timeLimiter.callWithTimeout(callableThrowing(exception), DELAY_MS, MILLISECONDS)); assertThat(e.getCause()).isEqualTo(exception); } public void testCallWithTimeout_wrapsUncheckedException() throws Exception { Exception exception = new RuntimeException("test"); UncheckedExecutionException e =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
} } return (List<ArtifactRepository>) repositories; } private ProjectBuildingException transformError(ProjectBuildingException e) { if (e.getCause() instanceof ModelBuildingException) { return new InvalidProjectModelException(e.getProjectId(), e.getMessage(), e.getPomFile()); } return e; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
internal/s3select/csv/errors.go
package csv import "errors" 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/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java
public SuggestSettingsException(final String msg) { super(msg); } public SuggestSettingsException(final Throwable cause) { super(cause); } public SuggestSettingsException(final String msg, final Throwable cause) { super(msg, cause); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
ignoreAuthFailure(e); } } protected void ignoreAuthFailure ( SmbAuthException e ) throws SmbAuthException { if ( e.getCause() != null && e.getCause() instanceof SmbException && ( (SmbException) e.getCause() ).getNtStatus() == NtStatus.NT_STATUS_INVALID_PARAMETER ) { // broken samba servers Assume.assumeNoException(e); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScheduledJobException.java
private static final long serialVersionUID = 1L; /** * @param message Exception message. * @param cause Root cause for this exception. */ public ScheduledJobException(final String message, final Throwable cause) { super(message, cause); } /** * @param message Exception message. */ public ScheduledJobException(final String message) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.1K bytes - Viewed (0)