Package org.sonatype.nexus.rest.model

Examples of org.sonatype.nexus.rest.model.ErrorMessage


            String content = response.getEntity(String.class);
            if (content.contains("<nexus-error")) {
                errors = unmarshal(ErrorResponse.class, content).getErrors();
            }
            else {
                ErrorMessage msg = new ErrorMessage();
                msg.setId("unknown-error-response");
                msg.setMsg(content);
                errors = new ArrayList<ErrorMessage>(1);
                errors.add(msg);
            }

            throw new RequestFailed(status, errors);
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.rest.model.ErrorMessage

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.