119120121122123124125126
/** * Checks if the {@link Context} is accessible from current request cycle. */ private static void validateContext() { if (!isContextSet()) { throw new WroRuntimeException("No context associated with CURRENT request cycle!"); } }