More documentation.

This commit is contained in:
Jindra Petřík
2024-08-08 19:27:14 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions
@@ -17,15 +17,31 @@
package com.jpexs.decompiler.graph;
/**
*
* Exception thrown in the graph.
* @author JPEXS
*/
public class GraphException {
/**
* Start IP of thrown block
*/
public int start;
/**
* End IP of thrown block
*/
public int end;
/**
* Target IP to go when exception is thrown
*/
public int target;
/**
* Constructs a new exception
* @param start Start IP
* @param end End IP
* @param target Target IP
*/
public GraphException(int start, int end, int target) {
this.start = start;
this.end = end;