List of usage examples for javax.activation UnsupportedDataTypeException UnsupportedDataTypeException
public UnsupportedDataTypeException()
From source file:org.aksw.resparql.IMyHandler.java
private SimpleResponse process(HttpExchange t) throws Exception { String request = t.getRequestURI().toString(); Object o = ric.invoke(request); if (o instanceof SimpleResponse) return (SimpleResponse) o; throw new UnsupportedDataTypeException(); }