All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.axway.grapes.utils.client.GrapesCommunicationException Maven / Gradle / Ivy

Go to download

Utility library that can be embedded or run in commandline to handle HTTP requests to Grapes.

There is a newer version: 1.4.3
Show newest version
package org.axway.grapes.utils.client;

/**
 * Grapes Client Exception
 * 
 * 

Is thrown when a problem of communication with the Grapes server occurs.

* * @author jdcoffre */ public class GrapesCommunicationException extends Exception { private static final long serialVersionUID = 7318934257349612137L; private int status; @Deprecated public GrapesCommunicationException(final int status) { super(); this.status = status; } public GrapesCommunicationException(final String message, final int status) { super(message); this.status = status; } public int getHttpStatus(){ return status; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy