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(Throwable cause) 

Source Link

Document

Constructs a new exception with the specified cause and a detail message of (cause==null ?

Usage

From source file:com.codebutler.farebot.card.desfire.DesfireFileSettings.java

public static DesfireFileSettings Create(byte[] data) throws Exception {
    byte fileType = (byte) data[0];

    ByteArrayInputStream stream = new ByteArrayInputStream(data);

    if (fileType == STANDARD_DATA_FILE || fileType == BACKUP_DATA_FILE)
        return new StandardDesfireFileSettings(stream);
    else if (fileType == LINEAR_RECORD_FILE || fileType == CYCLIC_RECORD_FILE)
        return new RecordDesfireFileSettings(stream);
    else if (fileType == VALUE_FILE)
        throw new UnsupportedOperationException("Value files not yet supported");
    else//w ww.j a  va 2  s. c o  m
        throw new Exception("Unknown file type: " + Integer.toHexString(fileType));
}

From source file:com.karki.spring.dao.impl.CustomerDaoImpl.java

@Override
public Customer getById(int customerId) throws ClassNotFoundException, SQLException {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:com.flipkart.phantom.http.impl.SimpleHttpProxy.java

/**
 * Abstract method implementation/*from   w ww. ja v  a2 s  .c o  m*/
 * @see com.flipkart.phantom.http.impl.HttpProxy#fallbackRequest(HttpRequestWrapper)
 */
@Override
public HttpResponse fallbackRequest(HttpRequestWrapper requestWrapper) {
    throw new UnsupportedOperationException("No fallback implementation found!");
}

From source file:eu.openanalytics.rsb.stats.JobStatisticsHandlerFactory.java

private JobStatisticsHandlerFactory() {
    throw new UnsupportedOperationException("do not instantiate");
}

From source file:com.seguriboxltv.core.dao.impl.SystemParameterDaoImpl.java

@Override
public List<SystemParameter> GetAll() throws SQLException {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:com.opengamma.analytics.financial.equity.AbstractDerivativeVisitor.java

@Override
public T visitEquityIndexDividendFuture(final EquityIndexDividendFuture future, final S data) {
    throw new UnsupportedOperationException(
            "This visitor (" + this.getClass() + ") does not support visitEquityIndexDividendFuture()");
}

From source file:com.karki.spring.dao.impl.EnrollmentDaoImpl.java

@Override
public Enrollment getById(int batchId) throws ClassNotFoundException, SQLException {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:br.unicamp.ic.recod.gpsi.ml.gpsiLinearDiscriminantAnalysisClassificationAlgorithm.java

@Override
public byte predict(double[] x) {
    throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

From source file:com.devti.JavaXMPPBot.FakeDaemonContext.java

@Override
public DaemonController getController() {
    throw new UnsupportedOperationException("Not supported yet.");
}

From source file:com.devesion.examples.mappers.CommonsMapper.java

@Override
public void doMapObjects(Object src, Object dst) {
    try {/*w  ww  .ja  v a2  s  .c o  m*/
        BeanUtils.copyProperties(dst, src);
    } catch (IllegalAccessException e) {
        throw new UnsupportedOperationException(e);
    } catch (InvocationTargetException e) {
        throw new UnsupportedOperationException(e);
    }
}