Example usage for java.lang UnsupportedOperationException UnsupportedOperationException

List of usage examples for java.lang UnsupportedOperationException UnsupportedOperationException

Introduction

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

Prototype

public UnsupportedOperationException() 

Source Link

Document

Constructs an UnsupportedOperationException with no detail message.

Usage

From source file:com.creditcloud.service.impl.AbstractMarketCustomizeService.java

@Override
public PagedResult<com.creditcloud.service.model.misc.WechatInfo> listWechatInfoByDate(Date from, Date to,
        PageInfo pageInfo) {/*from w w  w .ja  v a  2 s .com*/
    throw new UnsupportedOperationException();
}

From source file:com.sfs.whichdoctor.xml.writer.PreferencesXmlWriter.java

/**
 * Instantiates a new preferences xml helper.
 */
protected PreferencesXmlWriter() {
    throw new UnsupportedOperationException();
}

From source file:springfox.documentation.spring.web.HandlerMethodReturnTypes.java

private HandlerMethodReturnTypes() {
    throw new UnsupportedOperationException();
}

From source file:springfox.documentation.builders.RequestHandlerSelectors.java

private RequestHandlerSelectors() {
    throw new UnsupportedOperationException();
}

From source file:org.carrot2.util.httpclient.HttpRedirectStrategy.java

public RedirectStrategy value() {
    switch (this) {
    case NO_REDIRECTS:
        return new RedirectStrategy() {
            public HttpUriRequest getRedirect(HttpRequest req, HttpResponse resp, HttpContext ctx)
                    throws ProtocolException {
                throw new UnsupportedOperationException();
            }//from  w  ww  . j ava  2s  .  c  o  m

            public boolean isRedirected(HttpRequest req, HttpResponse resp, HttpContext ctx)
                    throws ProtocolException {
                return false;
            }
        };

    case FOLLOW:
        return new DefaultRedirectStrategy();
    }

    throw new RuntimeException();
}

From source file:com.hp.alm.ali.idea.model.type.FileSizeType.java

@Override
public FilterFactory getFilterFactory(boolean multiple) {
    throw new UnsupportedOperationException();
}

From source file:com.excilys.ebi.bank.web.security.SecurityUtils.java

private SecurityUtils() {
    throw new UnsupportedOperationException();
}

From source file:springfox.documentation.schema.Annotations.java

private Annotations() {
    throw new UnsupportedOperationException();
}

From source file:com.bsb.intellij.plugins.xmlbeans.utils.ValidationUtils.java

private ValidationUtils() {
    throw new UnsupportedOperationException();
}

From source file:com.opengamma.analytics.math.interpolation.ExponentialExtrapolator1D.java

@Override
public Interpolator1DDataBundle getDataBundleFromSortedArrays(final double[] x, final double[] y) {
    throw new UnsupportedOperationException();
}