warningJava ErrorsAffects: All versions
How to Fix InvocationTargetException
Fix InvocationTargetException by reading the 'Caused by' section for the actual error.
Quick Fix
Check the 'Caused by' section for the real error. InvocationTargetException is a wrapper.
Error Message
java.lang.reflect.InvocationTargetExceptionHow to Fix
1
Read past InvocationTargetException to the 'Caused by' line
2
Fix the underlying cause
3
Update the mod or plugin shown in the trace
Common Causes
- A method called via reflection threw an exception
- Mod event handler crash
- Plugin command handler failure
Diagnostic Steps
- Open crash report
- Find 'Caused by'
- Fix that error
- Restart
FAQ
Is this a real error?
It wraps the real error. Always read the 'Caused by' section below it.