Package org.platformlayer.core.model

Examples of org.platformlayer.core.model.ErrorResponse


  @Override
  public Response toResponse(OpsException e) {
    log.warn("Returning error to client", e);

    ErrorResponse error = new ErrorResponse();
    error.message = e.getMessage();

    if (e instanceof CustomerFacingException) {
      CustomerFacingException cfe = (CustomerFacingException) e;
      error.code = cfe.getCode();
View Full Code Here

TOP

Related Classes of org.platformlayer.core.model.ErrorResponse

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.