PacketNotFoundException.java
747 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.document.xmlform.FormPackage;
import com.adobe.document.xmlform.FormPackage.PacketNotFoundExceptionHelper;
import org.omg.CORBA.UserException;
public final class PacketNotFoundException
extends UserException {
private static final long serialVersionUID = 1;
public String packetName = "";
public PacketNotFoundException() {
super(PacketNotFoundExceptionHelper.id());
}
public PacketNotFoundException(String _reason, String packetName) {
super(_reason);
this.packetName = packetName;
}
public PacketNotFoundException(String packetName) {
super(PacketNotFoundExceptionHelper.id());
this.packetName = packetName;
}
}