mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 06:34:58 +00:00
17 lines
285 B
Java
17 lines
285 B
Java
package com.jpexs.decompiler.graph;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class ThrowState {
|
|
public int exceptionId;
|
|
public int state;
|
|
|
|
public Set<GraphPart> throwingParts = new HashSet<>();
|
|
public GraphPart targetPart;
|
|
}
|