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.amalto.core.query.user.VisitorAdapter.java

public T visit(DateConstant constant) {
    throw new NotImplementedException();
}

From source file:com.jabyftw.lobstercraft.world.BlockProtectionType.java

public double getProtectionRange(byte cityLevel) {
    throw new NotImplementedException();
}

From source file:com.hartveld.queryable.reactive.subjects.AbstractSubject.java

@Override
public Observable<T> filter(final Predicate<? super T> predicate) {
    throw new NotImplementedException();
}

From source file:com.github.seleniumpm.SeleniumWebdriver.java

public void clickAt(String s, String s1) {
    throw new NotImplementedException();
}

From source file:de.hybris.platform.converters.impl.AbstractConverter.java

/**
 * @deprecated please inject the target class directly, since it's way faster than the Spring <lookup-method>
 *             approach!/*from   w ww .j  a v  a  2 s .  c  om*/
 */
@Deprecated
protected TARGET createTarget() {
    // optional - no longer requiring sub classes to implement this method
    throw new NotImplementedException();
}

From source file:com.thoughtworks.studios.journey.jql.conditions.IntValue.java

@Override
public Value divide(Value right) {
    if (right instanceof IntValue) {
        return new IntValue(val / ((IntValue) right).val);
    }//from ww w.  ja  va 2  s .  c o  m

    if (right instanceof FloatValue) {
        return new FloatValue(val / ((FloatValue) right).val);
    }

    if (right instanceof StringValue) {
        throw new DataQueryError("cannot add string value to an integer value");
    }

    throw new NotImplementedException();
}

From source file:edu.berkeley.compbio.ncbitaxonomy.jpa.NcbiTaxonomyNode.java

public void setName(final String name) {
    throw new NotImplementedException();
}

From source file:edu.berkeley.compbio.sequtils.sequencereader.RandomSectionList.java

public int readTranslated()
        throws IOException, FilterException, NotEnoughSequenceException, TranslationException {
    throw new NotImplementedException();
}

From source file:com.opengamma.analytics.financial.greeks.AbstractGreekVisitor.java

@Override
public T visitZeta() {
    throw new NotImplementedException();
}

From source file:com.noxpvp.mmo.MMOPlayer.java

public PlayerAbility[] getPlayerAbilities() {
    throw new NotImplementedException();
}