Example usage for java.lang AssertionError AssertionError

List of usage examples for java.lang AssertionError AssertionError

Introduction

In this page you can find the example usage for java.lang AssertionError AssertionError.

Prototype

public AssertionError() 

Source Link

Document

Constructs an AssertionError with no detail message.

Usage

From source file:org.terasoluna.gfw.functionaltest.domain.service.exceptionhandling.ExceptionHandlingServiceImpl.java

@Override
public void throwAssertionError() {

    throw new AssertionError();

}

From source file:com.xtructure.xutil.valid.comp.UTestAbstractComparisonCondition.java

License:asdf

public void constructorSucceeds() {
    if (new DummyComparisonCondition("asdf") == null) {
        throw new AssertionError();
    }/*from ww  w .  j  av  a  2 s . c o  m*/
}

From source file:org.springsource.sinspctr.BannerUtils.java

/** Prevent instantiation. */
private BannerUtils() {
    throw new AssertionError();
}

From source file:uk.co.blackpepper.support.spring.jdbc.jooq.SpringJdbcJooqUtils.java

private SpringJdbcJooqUtils() {
    throw new AssertionError();
}

From source file:com.prowidesoftware.swift.model.SwiftCharsetUtils.java

private SwiftCharsetUtils() {
    throw new AssertionError();
}

From source file:org.glowroot.agent.plugin.httpclient.FutureCallbackWithoutEntryWrapper.java

private static RuntimeException rethrow(Throwable t) {
    FutureCallbackWithoutEntryWrapper.<RuntimeException>throwsUnchecked(t);
    throw new AssertionError();
}

From source file:com.roche.sequencing.bioinformatics.common.utils.BitSetUtil.java

private BitSetUtil() {
    throw new AssertionError();
}

From source file:org.jtheque.i18n.I18NResourceFactory.java

/**
 * Utility class, not instantiable.
 */
private I18NResourceFactory() {
    throw new AssertionError();
}

From source file:com.roche.sequencing.bioinformatics.common.utils.Md5CheckSumUtil.java

private Md5CheckSumUtil() {
    throw new AssertionError();
}

From source file:com.minlia.cloud.framework.test.common.util.SearchIntegrationTestUtil.java

private SearchIntegrationTestUtil() {
    throw new AssertionError();
}