OutputServiceException.java
455 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.fd.output.api;
public abstract class OutputServiceException
extends Exception {
public OutputServiceException() {
}
public OutputServiceException(String message) {
super(message);
}
public OutputServiceException(String message, Throwable cause) {
super(message, cause);
}
public OutputServiceException(Throwable cause) {
super(cause);
}
}