mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 21:41:35 +00:00
@@ -27,39 +27,39 @@ import java.util.Stack;
|
||||
*/
|
||||
public class UnknownJumpException extends RuntimeException {
|
||||
|
||||
/**
|
||||
* Actual stack
|
||||
*/
|
||||
public Stack stack;
|
||||
/**
|
||||
* Actual address
|
||||
*/
|
||||
public long addr;
|
||||
/**
|
||||
* Output of the method before raising the exception
|
||||
*/
|
||||
public List<TreeItem> output;
|
||||
/**
|
||||
* Actual stack
|
||||
*/
|
||||
public Stack stack;
|
||||
/**
|
||||
* Actual address
|
||||
*/
|
||||
public long addr;
|
||||
/**
|
||||
* Output of the method before raising the exception
|
||||
*/
|
||||
public List<TreeItem> output;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param stack Actual stack
|
||||
* @param addr Actual address
|
||||
* @param output Output of the method before raising the exception
|
||||
*/
|
||||
public UnknownJumpException(Stack stack, long addr, List<TreeItem> output) {
|
||||
this.stack = stack;
|
||||
this.addr = addr;
|
||||
this.output = output;
|
||||
}
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param stack Actual stack
|
||||
* @param addr Actual address
|
||||
* @param output Output of the method before raising the exception
|
||||
*/
|
||||
public UnknownJumpException(Stack stack, long addr, List<TreeItem> output) {
|
||||
this.stack = stack;
|
||||
this.addr = addr;
|
||||
this.output = output;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a string representation of the object
|
||||
*
|
||||
* @return a string representation of the object.
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Unknown jump to " + addr;
|
||||
}
|
||||
/**
|
||||
* Returns a string representation of the object
|
||||
*
|
||||
* @return a string representation of the object.
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Unknown jump to " + addr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user