- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for test_getCause (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
assertEquals("org.apache.lucene.queryparser.classic.ParseException: " + errorMessage, queryParseException.getMessage()); } @Test public void test_getCause() { // Test that the cause is properly set and retrievable ParseException parseException = new ParseException("Query parsing failed");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
String message = longMessage.toString(); SsoLoginException exception = new SsoLoginException(message); assertEquals(message, exception.getMessage()); } @Test public void test_getCause() { // Test getCause() method explicitly Exception cause = new IllegalArgumentException("Invalid SSO token"); SsoLoginException exception = new SsoLoginException("SSO error", cause);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java
UserRoleLoginException exception = new UserRoleLoginException(RootAction.class); assertNull(exception.getMessage()); } @Test public void test_getCause() { // Test that getCause returns null (no cause set in constructor) UserRoleLoginException exception = new UserRoleLoginException(RootAction.class); assertNull(exception.getCause()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0)