Search Options

Results per page
Sort
Preferred Languages
Advance

Results 611 - 620 of 1,205 for Exceptions (0.05 sec)

  1. ApiAdminCrawlinginfoAction.java

    crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> { L80: try { L81: crawlingInfoService.delete(entity); L82: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L83: } catch (final Exception e) { L84: logger.warn("Failed to process a request.", e); L85: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToDeleteCrudTable(GLOBAL, buildThrowableMessage(e))); L86: } L87: }).orElse(()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.9K bytes
  2. ApiAdminFailureurlAction.java

    failureUrlService.getFailureUrl(id).ifPresent(entity -> { L82: try { L83: failureUrlService.delete(entity); L84: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L85: } catch (final Exception e) { L86: logger.warn("Failed to process a request.", e); L87: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToDeleteCrudTable(GLOBAL, buildThrowableMessage(e))); L88: } L89: }).orElse(()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.9K bytes
  3. SerializeUtil.java

    java.io.ByteArrayInputStream; L22:import java.io.ByteArrayOutputStream; L23:import java.io.IOException; L24:import java.io.ObjectInputStream; L25:import java.io.ObjectOutputStream; L26: L27:import org.codelibs.core.exception.ClassNotFoundRuntimeException; L28:import org.codelibs.core.exception.IORuntimeException; L29: L30:/** L31: * オブジェクトをシリアライズするためのユーティリティです。 L32: * L33: * @author higa L34: */ L35:public abstract class SerializeUtil { L36: L37: private static final int BYTE_ARRAY_SIZE = 8 * 1024;...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      3.5K bytes
  4. TypeTokenTest.java

    >() {}; L65: assertEquals(a, b); L66: } L67: L68: @SuppressWarnings("TestExceptionChecker") // see comment below L69: public <T> void testVariableTypeTokenNotAllowed() { L70: /* L71: * We'd use assertThrows here, but that causes no exception to be thrown under Java 8, L72: * presumably because the ThrowingRunnable lambda triggers some kind of bug in Java 8's L73: * reflection implementation. L74: */ L75: try { L76: new TypeToken<T>() {}; L77: fail(); L78: ...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Oct 21 21:13:09 UTC 2024
      89.1K bytes
  5. FessUserNotFoundException.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 FessUserNotFoundException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public FessUserNotFoundException(final String username) { L23: super("User is not found:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      903 bytes
  6. PathMappingHelperTest.java

    pping; L22:import org.codelibs.fess.unit.UnitFessTestCase; L23: L24:public class PathMappingHelperTest extends UnitFessTestCase { L25: L26: public PathMappingHelper pathMappingHelper; L27: L28: @Override L29: public void setUp() throws Exception { L30: super.setUp(); L31: pathMappingHelper = new PathMappingHelper(); L32: pathMappingHelper.init(); L33: } L34: L35: public void test_setPathMappingList() { L36: final String sessionId = "test"; L37: final...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.3K bytes
  7. StandardAndroidSocketAdapter.kt

    ketFactoryImpl") as Class<in SSLSocketFactory> L65: val paramsClass = Class.forName("$packageName.SSLParametersImpl") L66: L67: StandardAndroidSocketAdapter(sslSocketClass, sslSocketFactoryClass, paramsClass) L68: } catch (e: Exception) { L69: AndroidLog.androidLog( L70: loggerName = OkHttpClient::class.java.name, L71: logLevel = Platform.WARN, L72: message = "unable to load android socket classes", L73: t = e, L74: ) L75: ...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Jan 08 01:13:22 UTC 2024
      2.7K bytes
  8. MapMakerTest.java

    L32:/** L33: * @author Charles Fry L34: */ L35:@GwtCompatible(emulated = true) L36:@J2ktIncompatible // MapMaker L37:public class MapMakerTest extends TestCase { L38: @GwtIncompatible // NullPointerTester L39: public void testNullParameters() throws Exception { L40: NullPointerTester tester = new NullPointerTester(); L41: tester.testAllPublicInstanceMethods(new MapMaker()); L42: } L43: L44: @GwtIncompatible // threads L45: static final class DelayingIdentityLoader<T> implements Function<T, T>...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Oct 15 17:36:06 UTC 2024
      2.7K bytes
  9. SQLRuntimeException.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 static org.codelibs.core.collection.ArrayUtil.asArray; L19: L20:import java.sql.SQLException; L21: L22:import org.codelibs.core.message.MessageFormatter; L23: L24:/** L25: * {@link SQLException}をラップする例外です。 L26: * L27: * @author higa...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      2.6K bytes
  10. AdminRelatedqueryAction.java

    getRelatedQuery(form).ifPresent(entity -> { L203: try { L204: relatedQueryService.store(entity); L205: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L206: } catch (final Exception e) { L207: logger.warn("Failed to process a request.", e); L208: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L209: this::asEditHtml);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.1K bytes
Back to top