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

com.synedge.oss.client.exceptions.SynedgeClientInvalidationException.groovy Maven / Gradle / Ivy

Go to download

This client allows you to easily connect to the Synedge API with any language running on the JDK

The newest version!
package com.synedge.oss.client.exceptions

/**
 * This exception is thrown if the API server returns an error while invalidating. The server error is available as message
 * @author Paul van Assen
 *
 */
class SynedgeClientInvalidationException extends SynedgeClientException {
    SynedgeClientInvalidationException(String message) {
        super(message)
    }
    
    SynedgeClientInvalidationException(String message, Throwable cause) {
        super(message, cause)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy