- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PluginException (0.14 sec)
-
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
} }; try { errorHelper.getAvailableArtifacts(ArtifactType.DATA_STORE); fail("Expected PluginException"); } catch (PluginException e) { assertTrue(e.getMessage().contains("Failed to access")); } } public void test_getInstalledArtifacts_unknown() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
* @return an array of available artifacts * @throws PluginException if failed to access the artifact repository */ public Artifact[] getAvailableArtifacts(final ArtifactType artifactType) { try { return availableArtifacts.get(artifactType); } catch (final Exception e) { throw new PluginException("Failed to access " + artifactType, e); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0)