- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 539 for Pause (1.08 sec)
-
src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java
/** * Creates a {@link ParserConfigurationRuntimeException}. * * @param cause the underlying exception */ public ParserConfigurationRuntimeException(final ParserConfigurationException cause) { super("ECL0053", asArray(cause), cause); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
public UncheckedTimeoutException(@Nullable String message) { super(message); } public UncheckedTimeoutException(@Nullable Throwable cause) { super(cause); } public UncheckedTimeoutException(@Nullable String message, @Nullable Throwable cause) { super(message, cause); } private static final long serialVersionUID = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 1.4K bytes - Viewed (0) -
compat/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 }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProviderException.java
public SuperPomProviderException(String message) { super(message); } public SuperPomProviderException(String message, Throwable cause) { super(message, cause); } public SuperPomProviderException(Throwable cause) { super(cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvalidKeyRuntimeException.java
/** * Creates a {@link InvalidKeyRuntimeException}. * * @param cause * The cause of the exception */ public InvalidKeyRuntimeException(final InvalidKeyException cause) { super("ECL0068", asArray(cause), cause); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbAuthExceptionTest.java
return Stream.of(Arguments.of((String) null), Arguments.of("")); } /** * Validate message+cause constructor and that no interaction with cause occurs during construction. */ @Test @DisplayName("String+Throwable ctor: sets message, cause and unsuccessful status") void messageAndCauseConstructor_setsFields(@Mock Throwable mockCause) { // Arrange
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/InvalidQueryException.java
* * @param messageCode the message code for localized error messages * @param message the detailed error message * @param cause the cause of the exception */ public InvalidQueryException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) { super(message, cause); this.messageCode = messageCode; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/UncheckedThrowingFuture.java
Throwable wrapper = e.getCause(); if (wrapper instanceof WrapperException) { Throwable cause = wrapper.getCause(); if (cause instanceof RuntimeException) { throw (RuntimeException) cause; } else if (cause instanceof Error) { throw (Error) cause; } } throw e; } @Override public V get() throws ExecutionException, InterruptedException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
// Test constructor with null component name and valid cause Throwable cause = new RuntimeException("Test cause"); ContainerNotAvailableException exception = new ContainerNotAvailableException(null, cause); assertEquals("null is not available.", exception.getMessage()); assertEquals(cause, exception.getCause()); assertNull(exception.getComponentName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolationException.java
super(message); } public ModelInterpolationException(String message, Throwable cause) { super(message, cause); } public ModelInterpolationException(String expression, String message, Throwable cause) { super("The POM expression: " + expression + " could not be evaluated. Reason: " + message, cause); this.expression = expression; this.originalMessage = message; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0)