Package com.sun.jersey.samples.jersey_ejb.exceptions

Examples of com.sun.jersey.samples.jersey_ejb.exceptions.NotFoundException


    public void deleteMessage(@PathParam("msgNum") int msgNum) throws NotFoundException {
        boolean deleted = singleton.deleteMessage(msgNum);

        if(!deleted) {
            // This exception will be mapped to a 404 response
            throw new NotFoundException();
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.jersey.samples.jersey_ejb.exceptions.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.