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

com.synedge.oss.client.exceptions.SynedgeClientException.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

/**
 * Base exception for all Synedge client exceptions
 * @author Paul van Assen
 *
 */
class SynedgeClientException extends RuntimeException {
    /**
     * Always require a message
     * @param message Message of the error
     */
    SynedgeClientException(String message) {
        super(message)
    }

    /**
     * Always require a message
     * @param message Message of the error
     * @param cause Cause of the underlying exception
     */
    SynedgeClientException(String message, Throwable cause) {
        super(message, cause)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy