Java tutorial
/* * Copyright 2005-2013 shopxx.net. All rights reserved. * Support: http://www.shopxx.net * License: http://www.shopxx.net/license */ package net.groupbuy; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; /** * ?? * * @author SHOP++ Team * @version 3.0 */ @ResponseStatus(value = HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends RuntimeException { private static final long serialVersionUID = -9208522773597070069L; }