in src/main/java/org/apache/sling/scripting/core/JakartaScriptHelper.java [107:119]
public JakartaScriptHelper(
final BundleContext ctx,
final SlingJakartaScript script,
final SlingJakartaHttpServletRequest request,
final SlingJakartaHttpServletResponse response) {
if (ctx == null) {
throw new IllegalArgumentException("Bundle context must not be null.");
}
this.script = script;
this.request = wrapIfNeeded(request);
this.response = wrapIfNeeded(response);
this.bundleContext = ctx;
}