PsToPdfFailureException.java
673 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.ps2pdf;
import com.adobe.ps2pdf.PsToPdfFailureExceptionHelper;
import org.omg.CORBA.UserException;
public final class PsToPdfFailureException
extends UserException {
public int errorCode;
public PsToPdfFailureException() {
super(PsToPdfFailureExceptionHelper.id());
}
public PsToPdfFailureException(String _reason, int errorCode) {
super(PsToPdfFailureExceptionHelper.id() + " " + _reason);
this.errorCode = errorCode;
}
public PsToPdfFailureException(int errorCode) {
super(PsToPdfFailureExceptionHelper.id());
this.errorCode = errorCode;
}
}