Package org.springside.examples.showcase.webservice.rest

Examples of org.springside.examples.showcase.webservice.rest.RestException


      return handleRequest(id);
    }

    // 演示服务端出错情况.
    if ("server-error".equals(status)) {
      throw new RestException(HttpStatus.INTERNAL_SERVER_ERROR, "Server Exception");
    }

    // 演示客户端请求出错。
    if ("bad-request".equals(status)) {
      throw new RestException(HttpStatus.BAD_REQUEST, "Client send a bad request");
    }

    return null;
  }
View Full Code Here

TOP

Related Classes of org.springside.examples.showcase.webservice.rest.RestException

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.