mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 08:54:53 +00:00
Fixed AS1/2 - ifFrameLoaded with nontrivial items inside
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.jpexs.decompiler.graph;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class GraphPartChangeException extends Exception {
|
||||
private final int ip;
|
||||
private final List<GraphTargetItem> output;
|
||||
|
||||
public GraphPartChangeException(List<GraphTargetItem> output, int ip) {
|
||||
this.output = output;
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
public int getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public List<GraphTargetItem> getOutput() {
|
||||
return output;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user