- Sort Score
- Num 10 results
- Language All
Results 281 - 290 of 496 for Throwables (0.05 seconds)
-
okhttp/src/androidMain/baseline-prof.txt
HSPLandroidx/startup/InitializationProvider;->onCreate()Z HSPLandroidx/tracing/Trace;->isEnabled()Z HSPLkotlin/Result$Failure;-><init>(Ljava/lang/Throwable;)V HSPLkotlin/Result;->exceptionOrNull-impl(Ljava/lang/Object;)Ljava/lang/Throwable; HSPLkotlin/ResultKt;->createFailure(Ljava/lang/Throwable;)Ljava/lang/Object; HSPLkotlin/ResultKt;->throwOnFailure(Ljava/lang/Object;)V
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon Dec 30 23:28:56 GMT 2024 - 127.9K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/exception/LdapOperationException.java
* * @param message The detail message. * @param cause The cause. */ public LdapOperationException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new LDAP operation exception with the specified detail message. * * @param message The detail message. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/CommandExecutionException.java
* @param message The error message describing the command execution failure. * @param e The cause of the exception. */ public CommandExecutionException(final String message, final Throwable e) { super(message, e); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/ThemeException.java
* * @param message the exception message * @param cause the underlying cause of this exception */ public ThemeException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new ThemeException with the specified message. * * @param message the exception message */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java
* * @param message the exception message * @param cause the underlying cause of this exception */ public ThumbnailGenerationException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new ThumbnailGenerationException with the specified message. * * @param message the exception message */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Wed Nov 19 08:04:23 GMT 2025 - 1.5K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java
this.type = type; this.baseMessage = message; } public InvalidArtifactRTException( String groupId, String artifactId, String version, String type, String message, Throwable cause) { super(cause); this.groupId = groupId; this.artifactId = artifactId; this.version = version; this.type = type; this.baseMessage = message; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
private final transient DependencyResolutionResult result; private final transient String detailMessage; public DependencyResolutionException(DependencyResolutionResult result, String message, Throwable cause) { super(message, cause); this.result = result; this.detailMessage = prepareDetailMessage(message, result); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 10:13:56 GMT 2025 - 2.6K bytes - Click Count (0) -
android/guava/src/com/google/common/eventbus/SubscriberExceptionHandler.java
/** * Handler for exceptions thrown by event subscribers. * * @since 16.0 */ public interface SubscriberExceptionHandler { /** Handles exceptions thrown by subscribers. */ void handleException(Throwable exception, SubscriberExceptionContext context);Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Jan 18 02:54:30 GMT 2025 - 894 bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java
super("ECL0041", asArray(targetClass.getName(), cause), cause); this.targetClass = targetClass; } @Override public synchronized InstantiationRuntimeException initCause(final Throwable cause) { return (InstantiationRuntimeException) super.initCause(cause); } /** * Returns the target class. * * @return Target class */
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/core/exception/SRuntimeExceptionTest.java
System.out.println(ex.getMessage()); } /** * @throws Exception */ @Test public void testGetCause() throws Exception { final Throwable t = new NullPointerException("test"); final ClRuntimeException ex = new ClRuntimeException("ECL0017", asArray(t), t); assertThat(ex.getCause(), is(t)); ex.printStackTrace(); }
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.6K bytes - Click Count (0)