Getting “ArrayIndexOutOfBoundsException: null” with NO stack trace
String concatenated with a null reference might get you such a message: Object obj = null; throw new ArrayIndexOutOfBoundsException(“” + obj); If you’re using an Oracle JVM you may want to add -XX:-OmitStackTraceInFastThrow as an additional parameter to see if it helps. For some basic exceptions, the JVM reuses the same exception instance after a … Read more