Package com.getperka.flatpack.client

Examples of com.getperka.flatpack.client.StatusCodeException


      }
    }

    // Treat any non-2XX response as an error
    if (!isOk(status)) {
      StatusCodeException sce = new StatusCodeException(status, cause);
      sce.setEntity(entity);
      throw sce;
    }

    return entity;
  }
View Full Code Here

TOP

Related Classes of com.getperka.flatpack.client.StatusCodeException

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.