mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 11:54:36 +00:00
More documentation.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user