Update XACryptoException.java (#41)

#SIMPLEST FIX EVER lmao
This commit is contained in:
Xiao
2026-07-14 15:50:25 -04:00
committed by GitHub
parent 999c99f166
commit 273f10a987
@@ -17,7 +17,7 @@ public class XACryptoException extends Exception {
}
public XACryptoException(String res, int iid) {
super(res);
this.id = iid;
this.id = iid & 0xFF;
}
public XACryptoException(String[] pnts, byte id){
super(String.join("|", pnts));