mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 01:30:44 +00:00
16 lines
310 B
Java
16 lines
310 B
Java
/*
|
|
* Copyright (c) 2010. JPEXS
|
|
*/
|
|
|
|
package com.jpexs.asdec.abc.avm2;
|
|
|
|
|
|
public class UnknownInstructionCode extends RuntimeException {
|
|
public int code;
|
|
|
|
public UnknownInstructionCode(int code) {
|
|
super("Unknown instruction code:" + Integer.toHexString(code));
|
|
this.code = code;
|
|
}
|
|
}
|