You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: If checks.xml is not found in the classpath, getResourceAsStream returns null, which will cause a NullPointerException when passed to InputSource or later to ConfigurationLoader.loadConfiguration.
Consequence: The application will fail with a cryptic error if the resource is missing.
Fix: Check for null and throw a clear exception if the resource is not found.