Search Options

Results per page
Sort
Preferred Languages
Advance

Results 691 - 700 of 1,205 for Exceptions (0.05 sec)

  1. FeatureEnumTest.java

    { L98: return (Class<? extends Annotation>) clazz; L99: } else { L100: throw new IllegalArgumentException(rootLocaleFormat("%s is not an annotation.", clazz)); L101: } L102: } L103: L104: public void testFeatureEnums() throws Exception { L105: assertGoodFeatureEnum(CollectionFeature.class); L106: assertGoodFeatureEnum(ListFeature.class); L107: assertGoodFeatureEnum(SetFeature.class); L108: assertGoodFeatureEnum(CollectionSize.class); L109: assertGoodFeatureEnum(MapFeature.class);...
    github.com/google/guava/guava-testlib/test/com/...
    Thu Oct 17 02:09:00 UTC 2024
      4.3K bytes
  2. Objects.java

    a == b || (a != null && a.equals(b)); L55: } L56: L57: /** L58: * Generates a hash code for multiple values. The hash code is generated by calling {@link L59: * Arrays#hashCode(Object[])}. Note that array arguments to this method, with the exception of a L60: * single Object array, do not get any special handling; their hash codes are based on identity L61: * and not contents. L62: * L63: * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that L64:...
    github.com/google/guava/guava/src/com/google/co...
    Mon Jul 22 19:03:12 UTC 2024
      3K bytes
  3. CommandExecutionException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class CommandExecutionException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public CommandExecutionException(final String message) { L23: super(message); L24: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      991 bytes
  4. PluginException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class PluginException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public PluginException(final String message, final Throwable cause) { L23: super(message, cause);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      969 bytes
  5. ThemeException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class ThemeException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public ThemeException(final String message, final Throwable cause) { L23: super(message, cause);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      966 bytes
  6. UnsupportedEncodingRuntimeException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.core.exception; L17: L18:import java.io.UnsupportedEncodingException; L19: L20:/** L21: * @author shinsuke L22: * L23: */ L24:public class UnsupportedEncodingRuntimeException extends ClRuntimeException { L25: L26: private static final long serialVersionUID =...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      1K bytes
  7. AdminAccesstokenAction.java

    entity.setToken(accessTokenHelper.generateAccessToken()); L208: try { L209: accessTokenService.store(entity); L210: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L211: } catch (final Exception e) { L212: logger.warn("Failed to process a request.", e); L213: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L214: this::asEditHtml);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.7K bytes
  8. AdminLabeltypeAction.java

    getLabelType(form).ifPresent(entity -> { L214: try { L215: labelTypeService.store(entity); L216: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L217: } catch (final Exception e) { L218: logger.warn("Failed to process a request.", e); L219: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L220: this::asEditHtml);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.1K bytes
  9. URLUtil.java

    java.io.UnsupportedEncodingException; L27:import java.net.URL; L28:import java.net.URLConnection; L29:import java.net.URLDecoder; L30:import java.net.URLEncoder; L31:import java.util.Map; L32: L33:import org.codelibs.core.exception.ClRuntimeException; L34:import org.codelibs.core.exception.IORuntimeException; L35: L36:/** L37: * {@link URL}を扱うユーティリティ・クラスです。 L38: * L39: * @author higa L40: */ L41:public abstract class URLUtil { L42: L43: /** プロトコルを正規化するためのマップ */ L44: protected static final Map<String,...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      7.3K bytes
  10. IndexUpdateCallbackImpl.java

    LogManager; L24:import org.apache.logging.log4j.Logger; L25:import org.codelibs.core.stream.StreamUtil; L26:import org.codelibs.fess.entity.DataStoreParams; L27:import org.codelibs.fess.es.client.SearchEngineClient; L28:import org.codelibs.fess.exception.DataStoreException; L29:import org.codelibs.fess.helper.CrawlingInfoHelper; L30:import org.codelibs.fess.helper.IndexingHelper; L31:import org.codelibs.fess.helper.SearchLogHelper; L32:import org.codelibs.fess.helper.SystemHelper; L33:import org...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.9K bytes
Back to top