Package org.jboss.seam.rest.example.client

Examples of org.jboss.seam.rest.example.client.StatusException


        try {
            locations = api.searchZip(query, 20, "demo");

            if (locations.getStatus() != null) {
                log.error(locations.getStatus().getMessage());
                throw new StatusException(locations.getStatus().getMessage());
            }
        } catch (Throwable e) {
            log.error(e.getMessage());
            throw new ConnectionException(e);
        }
View Full Code Here

TOP

Related Classes of org.jboss.seam.rest.example.client.StatusException

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.