com.github.libgraviton.workerbase.exception.GravitonCommunicationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-base Show documentation
Show all versions of worker-base Show documentation
A base library to simplify the creation of Graviton queue workers.
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