mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 09:10:44 +00:00
Initial version based on previous work. (Version alpha 7)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Copyright (c) 2010. JPEXS
|
||||
*/
|
||||
|
||||
package com.jpexs.asdec.abc.avm2;
|
||||
|
||||
|
||||
public class ConvertException extends Exception {
|
||||
public int line;
|
||||
public ConvertException(String s,int line) {
|
||||
super(s+" on line "+line);
|
||||
this.line=line;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user