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.sfs.whichdoctor.xml.writer.helper.AccreditationXmlHelper.java

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

From source file:org.unidle.social.test.UsersConnectionRepositoryStub.java

@Override
public List<String> findUserIdsWithConnection(final Connection<?> connection) {
    throw new UnsupportedOperationException();
}

From source file:com.boundlessgeo.geoserver.api.converters.ResourceMessageConverter.java

@Override
protected Resource readInternal(Class<? extends Resource> clazz, HttpInputMessage msg)
        throws IOException, HttpMessageNotReadableException {
    throw new UnsupportedOperationException();
}

From source file:tld.example.resources.UsersResource.java

@Override
@RequestMapping(value = "/users", method = RequestMethod.POST)
public void postUsers(@RequestBody User user) {
    throw new UnsupportedOperationException();
}

From source file:org.unidle.social.test.ConnectionRepositoryStub.java

@Override
public MultiValueMap<String, Connection<?>> findAllConnections() {
    throw new UnsupportedOperationException();
}

From source file:org.openlmis.fulfillment.service.HttpContextHelper.java

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

From source file:org.excalibur.core.util.Properties2.java

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

From source file:com.textocat.textokit.commons.util.CorpusUtils.java

public static String getPartitionFilename(PartitionType partType, int fold) {
    switch (partType) {
    case DEV:// www  . j  a  v  a2  s . c o m
        return getDevPartitionFilename(fold);
    case TEST:
        return getTestPartitionFilename(fold);
    case TRAIN:
        return getTrainPartitionFilename(fold);
    default:
        throw new UnsupportedOperationException();
    }
}

From source file:com.thinkbiganalytics.metadata.modeshape.common.EntityUtil.java

/**
 * Instances of {@code EntityUtil} should not be constructed.
 *
 * @throws UnsupportedOperationException always
 *//* ww w.j  a  va 2 s  .  com*/
private EntityUtil() {
    throw new UnsupportedOperationException();
}

From source file:net.sf.gazpachoquest.dto.answers.MultipleAnswer.java

@Override
@JsonIgnore
public Object getValue() {
    throw new UnsupportedOperationException();
}