- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PluginException (0.09 sec)
-
src/main/java/org/codelibs/fess/exception/PluginException.java
*/ package org.codelibs.fess.exception; public class PluginException extends FessSystemException { private static final long serialVersionUID = 1L; public PluginException(final String message, final Throwable cause) { super(message, cause); } public PluginException(final String message) { super(message); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 969 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
if (StringUtil.isBlank(url)) { throw new PluginException("url is blank: " + artifact.getName()); } if (url.startsWith("http:") || url.startsWith("https:")) { try (final CurlResponse response = createCurlRequest(url).execute()) { if (response.getHttpStatusCode() != 200) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0)