More documentation.

This commit is contained in:
Jindra Petřík
2024-08-06 06:17:00 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions

View File

@@ -17,17 +17,28 @@
package com.jpexs.decompiler.graph;
/**
*
* Second pass exception.
* @author JPEXS
*/
public class SecondPassException extends RuntimeException {
/**
* Second pass data.
*/
private final SecondPassData data;
/**
* Constructs a new SecondPassException.
* @param data Second pass data
*/
public SecondPassException(SecondPassData data) {
this.data = data;
}
/**
* Gets the second pass data.
* @return Second pass data
*/
public SecondPassData getData() {
return data;
}