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(Class clazz) 

Source Link

Document

Constructs a new NotImplementedException referencing the specified class.

Usage

From source file:eu.larkc.iris.rules.compiler.CascadingCompiledRule.java

@Override
public IRelation evaluateIteratively(IFacts deltas) throws EvaluationException {

    throw new NotImplementedException("Semi-naive evaluation is not supported.");
}

From source file:com.jaxio.celerio.model.relation.AbstractRelation.java

@Override
public boolean isUnique() {
    if (isSimple()) {
        return getFromAttribute().isUnique();
    }//from  w w  w.  j  av a  2s  . c  o m
    // TODO : implement
    throw new NotImplementedException("to be developped using entity uniques");
}

From source file:AIR.Common.Web.Session.ContentLoggingHttpServletRequest.java

@Override
public Map<String, ?> getParameterMap() {
    // TODO Need to implement parameters
    throw new NotImplementedException(
            "For proper function, parameter parsing must be implemented on ContentLoggingHttpServletRequest");
}

From source file:edu.berkeley.compbio.sequtils.strings.AggregateSequenceFragment.java

public synchronized SequenceReader getResetReader() throws NotEnoughSequenceException {
    throw new NotImplementedException("Can't get a reader on an aggregate");
    //   theAggregateReader.reset();
    //   return theAggregateReader;
}

From source file:com.kenshoo.integrations.plugins.connectors.util.SeekableInputStream.java

@Override
public boolean seekToNewSource(long targetPos) throws IOException {
    throw new NotImplementedException("Seek not supported");
}

From source file:com.impetus.kundera.query.QueryImpl.java

@Override
public Query setFlushMode(FlushModeType flushMode) {
    throw new NotImplementedException("TODO");
}

From source file:com.opengamma.analytics.financial.credit.CreditInstrumentDefinitionVisitorAdapter.java

@Override
public RESULT_TYPE visitStandardVanillaCDS(final StandardVanillaCreditDefaultSwapDefinition cds,
        final DATA_TYPE data) {
    throw new NotImplementedException(
            "This visitor (" + getClass().getName() + ") does not implement visitStandardVanillaCDS()");
}

From source file:ar.com.zauber.commons.secret.impl.NullSecretsMap.java

/** @see SecretsMap#removeByKey(String) */
public final void removeByKey(final String key) {
    throw new NotImplementedException("not implemented");
}

From source file:com.opengamma.analytics.financial.interestrate.payments.market.CouponIborDiscountingMarketMethod.java

@Override
public MultipleCurrencyAmount presentValue(final InstrumentDerivative instrument, final IMarketBundle market) {
    throw new NotImplementedException("Cannot handle CouponIborGearing");
    //FIXME As this code stands, it goes into an infinite loop
    //    ArgumentChecker.isTrue(instrument instanceof CouponIborGearing, "Coupon Ibor Gearing");
    //    return presentValue((CouponIborGearing) instrument, market);
}

From source file:com.p5solutions.core.jpa.orm.AbstractSQL.java

/**
 * Adds the query criteria./* w  w  w .ja  v  a 2s.c  o m*/
 * 
 * @param bindingIndex
 *          the binding index
 * @param value
 *          the value
 * @return the query parameter criteria
 */
public SQLParameterCriteria addQueryCriteria(Integer bindingIndex, Object value) {
    throw new NotImplementedException(
            "Bind by index not yet implemented, since we only use the NamedParameterJdbcTemplate");
}