Package org.apache.tuscany.sca.binding.rss.collection

Examples of org.apache.tuscany.sca.binding.rss.collection.NotFoundException


     * {@inheritDoc}
     */
    public SyndEntry get(String id) throws NotFoundException {
        final SyndEntry entry = entries.get(id);
        if (id == null) {
            throw new NotFoundException("No entry found with ID " + id);
        }

        return entry;
    }
View Full Code Here


     * {@inheritDoc}
     */
    public SyndEntry get(String id) throws NotFoundException {
        final SyndEntry entry = entries.get(id);
        if (id == null) {
            throw new NotFoundException("No entry found with ID " + id);
        }

        return entry;
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.binding.rss.collection.NotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.