WorkflowException.java
449 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.workflow;
public class WorkflowException
extends Exception {
private static final long serialVersionUID = 3126765556125618406L;
public WorkflowException(String message) {
super(message);
}
public WorkflowException(Throwable cause) {
super(cause);
}
public WorkflowException(String message, Throwable cause) {
super(message, cause);
}
}