WorkerException.java 414 字节
Newer Older
P
pengys5 已提交
1
package org.skywalking.apm.collector.stream.worker;
P
pengys5 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

/**
 * Defines a general exception a worker can throw when it
 * encounters difficulty.
 *
 * @author pengys5
 * @since v3.1-2017
 */
public class WorkerException extends Exception {

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

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