Example usage for org.apache.commons.lang NotImplementedException NotImplementedException

List of usage examples for org.apache.commons.lang NotImplementedException NotImplementedException

Introduction

In this page you can find the example usage for org.apache.commons.lang NotImplementedException NotImplementedException.

Prototype

public NotImplementedException() 

Source Link

Document

Constructs a new NotImplementedException with default message.

Usage

From source file:com.inmobi.grill.storage.db.DBSerde.java

@Override
public Object deserialize(Writable arg0) throws SerDeException {
    throw new NotImplementedException();
}

From source file:edu.berkeley.compbio.ml.cluster.BasicCentroidCluster.java

/**
 * {@inheritDoc}/*from   w  w w .j av a 2 s  .c o  m*/
 */
public boolean addAll(final CentroidCluster<T> point) {
    throw new NotImplementedException();
}

From source file:com.adobe.acs.commons.httpcache.store.disk.impl.DiskHttpCacheStoreImpl.java

@Override
public void put(CacheKey key, CacheContent content) throws HttpCacheDataStreamException {
    throw new NotImplementedException();
}

From source file:com.tera.gapi.itest.network.netty.GNetworkService.java

@Override
public void status() {
    throw new NotImplementedException();
}

From source file:com.atlassian.connector.eclipse.internal.crucible.ui.actions.LocalTeamResourceConnector.java

public LocalStatus getLocalRevision(IResource resource) throws CoreException {
    throw new NotImplementedException();
}

From source file:com.pinterest.pinlater.backends.redis.DummyRandom.java

public double nextDouble() {
    throw new NotImplementedException();
}

From source file:com.amalto.core.query.user.VisitorAdapter.java

public T visit(Timestamp timestamp) {
    throw new NotImplementedException();
}

From source file:ar.com.zauber.commons.moderation.model.MockBaseModerateableEntity.java

/** @see Persistible#setId(Long) */
public final void setId(final Long anId) {
    throw new NotImplementedException();
}

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

/**
 * /*  w  w w.  java 2  s.co  m*/
 * @param knots  
 * @param coefMatrix 
 * @param order 
 * @param dim 
 * @param coeffSense the sensitivity of the coefficients to the nodes (y-values)
 */
public PiecewisePolynomialResultsWithSensitivity(DoubleMatrix1D knots, DoubleMatrix2D coefMatrix, int order,
        int dim, final DoubleMatrix2D[] coeffSense) {
    super(knots, coefMatrix, order, dim);
    if (dim != 1) {
        throw new NotImplementedException();
    }
    ArgumentChecker.noNulls(coeffSense, "null coeffSense"); // coefficient
    _coeffSense = coeffSense;
}

From source file:edu.berkeley.compbio.ml.cluster.kohonen.KohonenSOMCell.java

/**
 * {@inheritDoc}/*from w  w w.  j a va2  s .  c  o m*/
 */
@Override
public boolean removeAll(final Cluster<T> otherCluster) {
    throw new NotImplementedException();
}