Skip to content

Commit

Permalink
change message
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicPlayerA10 committed Sep 7, 2024
1 parent 69e84f3 commit 23f0422
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class SandboxClassLoader extends ClassLoader {

public SandboxClassLoader(Context context) {
if (System.getSecurityManager() == null) {
LOGGER.error("SecurityManager is not initialized. It is required to secure you from running arbitrary code on your machine. Please use the built-in IntelliJ task named 'Bootstrap' (see README.md)");
LOGGER.error("SecurityManager is not initialized. It is required to secure arbitrary code execution on your machine, by blocking dangerous operations inside sandbox. Please use the built-in IntelliJ task named 'Bootstrap' (see README.md)");
throw new SecurityException("SecurityManager is not initialized");
}
this.context = context;
Expand Down

0 comments on commit 23f0422

Please sign in to comment.