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,15 +17,26 @@
package com.jpexs.decompiler.flash;
/**
*
* Parse exception.
* @author JPEXS
*/
public abstract class ParseException extends Exception {
/**
* Line number where the exception occurred.
*/
public long line;
/**
* Text of the exception.
*/
public String text;
/**
* Constructs a new parse exception.
* @param text
* @param line
*/
public ParseException(String text, long line) {
super("ParseException:" + text + " on line " + line);
this.line = line;