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

com.github.libgraviton.workerbase.exception.GravitonCommunicationException Maven / Gradle / Ivy

There is a newer version: 0.26.0
Show newest version
package com.github.libgraviton.workerbase.exception;

/**
 * Exception for unsucessful communication with Graviton
 *
 * @author List of contributors
 *         https://github.com/libgraviton/graviton/graphs/contributors
 * @see http://swisscom.ch
 */
public class GravitonCommunicationException extends Exception {

    public GravitonCommunicationException() {
    }

    public GravitonCommunicationException(String message) {
        super(message);
    }

    public GravitonCommunicationException(String message, Throwable cause) {
        super(message, cause);
    }

    public GravitonCommunicationException(Throwable cause) {
        super(cause);
    }

    public GravitonCommunicationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy