- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 1,838 for casse (0.09 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
return OptionalThing.of(asJson(createFailureBean(Status.BAD_REQUEST, createMessage(resource, cause)))); } @Override public OptionalThing<ApiResponse> handleServerException(final ApiFailureResource resource, final Throwable cause) { return OptionalThing.of(asJson(createFailureBean(Status.SYSTEM_ERROR, createMessage(resource, cause)))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SearchQueryException.java
/** * Constructs a new SearchQueryException with the specified detail message and cause. * * @param message The detail message explaining the exception * @param cause The cause of this exception */ public SearchQueryException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SearchQueryException with the specified detail message.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/RuntimeCIFSException.java
} /** * Constructs a runtime CIFS exception with the specified detail message and cause. * * @param message the detail message * @param cause the cause of this exception */ public RuntimeCIFSException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a runtime CIFS exception with the specified detail message. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
// Test constructor with message and cause String message = "Storage operation failed"; Exception cause = new RuntimeException("Underlying error"); StorageException exception = new StorageException(message, cause); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/CIFSUnsupportedCryptoException.java
} /** * Constructs a CIFS unsupported crypto exception with the specified detail message and cause. * * @param message the detail message * @param cause the cause of this exception */ public CIFSUnsupportedCryptoException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a CIFS unsupported crypto exception with the specified detail message.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SMBProtocolDowngradeException.java
} /** * Creates a new SMBProtocolDowngradeException with the specified detail message and cause. * * @param message the detail message * @param cause the cause of the exception */ public SMBProtocolDowngradeException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new SMBProtocolDowngradeException with the specified detail message.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
final Exception cause = new RuntimeException("Underlying error"); // Execute final InvalidQueryException exception = new InvalidQueryException(null, message, cause); // Verify assertNotNull(exception); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertNull(exception.getMessageCode());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java
} /** * Constructor with component name and cause. * @param componentName The name of the component that is not available. * @param cause The cause of the exception. */ public ContainerNotAvailableException(final String componentName, final Throwable cause) { super(componentName + " is not available.", cause); this.componentName = componentName; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
if (cmp < 0) { return aggregateBelowRange(aggr, node.left); } else if (cmp == 0) { switch (range.getLowerBoundType()) { case OPEN: return aggr.nodeAggregate(node) + aggr.treeAggregate(node.left); case CLOSED: return aggr.treeAggregate(node.left); } throw new AssertionError(); } else { return aggr.treeAggregate(node.left)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.8K bytes - Viewed (0) -
cmd/metacache-set_gen.go
} case "Limit": z.Limit, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err, "Limit") return } case "AskDisks": z.AskDisks, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "AskDisks") return } case "InclDeleted": z.InclDeleted, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "InclDeleted") return } case "Recursive":
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Mar 19 20:23:12 UTC 2024 - 13.8K bytes - Viewed (0)