Package br.gov.frameworkdemoiselle

Examples of br.gov.frameworkdemoiselle.NotFoundException


  @Produces("application/json")
  public Bookmark load(@PathParam("id") Long id) {
    Bookmark result = bc.load(id);

    if (result == null) {
      throw new NotFoundException();
    }

    return result;
  }
View Full Code Here


  @Produces("application/json")
  public Bookmark load(@PathParam("id") Long id) throws Exception {
    Bookmark result = bc.load(id);

    if (result == null) {
      throw new NotFoundException();
    }

    return result;
  }
View Full Code Here

TOP

Related Classes of br.gov.frameworkdemoiselle.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.