- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for DataStoreException (0.06 sec)
-
src/main/java/org/codelibs/fess/exception/DataStoreException.java
/** * Creates a new DataStoreException with the specified message. * * @param message the error message */ public DataStoreException(final String message) { super(message); } /** * Creates a new DataStoreException with the specified cause. * * @param cause the underlying cause of this exception */ public DataStoreException(final Throwable cause) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
// Test with different types of causes DataStoreException withIOException = new DataStoreException("IO Error", new java.io.IOException("File not found")); DataStoreException withNPE = new DataStoreException("NPE Error", new NullPointerException("Null value")); DataStoreException withCustom = new DataStoreException("Custom Error", new FessSystemException("System error"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0)