com.github.libgraviton.workerbase.exception.WorkerException 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.
/**
* worker exception
*/
package com.github.libgraviton.workerbase.exception;
/**
* WorkerException class.
*
* @author List of contributors {@literal }
* @see http://swisscom.ch
* @version $Id: $Id
*/
public class WorkerException extends Exception {
private static final long serialVersionUID = 1L;
public WorkerException() {
}
public WorkerException(String message) {
super(message);
}
public WorkerException(String message, Throwable cause) {
super(message, cause);
}
public WorkerException(Throwable cause) {
super(cause);
}
public WorkerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy