core/java8/proxy/src/main/java/org/apache/openwhisk/runtime/java/action/WhiskSecurityManager.java [29:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void checkPermission(Permission p) {
        // Not throwing means accepting anything.
    }

    @Override
    public void checkPermission(Permission p, Object ctx) {
        // Not throwing means accepting anything.
    }

    @Override
    public void checkExit(int status) {
        super.checkExit(status);
        throw new SecurityException("System.exit(" + status + ") called from within an action.");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/java8actionloop/lib/src/Launcher.java [84:97]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @Override
            public void checkPermission(Permission p) {
                // Not throwing means accepting anything.
            }

            @Override
            public void checkPermission(Permission p, Object ctx) {
                // Not throwing means accepting anything.
            }

            @Override
            public void checkExit(int status) {
                super.checkExit(status);
                throw new SecurityException("System.exit(" + status + ") called from within an action.");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



