update: 优化 Generator 异常处理

This commit is contained in:
pen4uin
2024-08-24 00:40:41 +08:00
parent 5e4cc68000
commit e5994d4813
6 changed files with 6 additions and 0 deletions
@@ -49,6 +49,7 @@ public class AntSwordGenerator implements IShellGenerator {
ctClass.detach();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return bytes;
}
@@ -49,6 +49,7 @@ public class BehinderGenerator implements IShellGenerator {
ctClass.detach();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return bytes;
}
@@ -33,6 +33,7 @@ public class CustomGenerator implements IShellGenerator {
ctClass.detach();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
@@ -60,6 +60,7 @@ public class GodzillaGenerator implements IShellGenerator {
ctClass.detach();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return bytes;
}
@@ -49,6 +49,7 @@ public class NeoreGeorgGenerator implements IShellGenerator {
ctClass.detach();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return bytes;
}
@@ -51,6 +51,7 @@ public class Suo5Generator implements IShellGenerator {
ctClass.detach();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
return bytes;
}