How to read some mod crash reports (Java)

This article is unfinished Many mod crashes commonly either mention which mod crashed or will have an error that mentions the mod that crashed the game. For example Forge on 1.7+ will display something like
(STATE) (MODID){9.05} [(MOD NAME)] (MODJAR)
Newer versions of forge display
| STATE | MOD ID | VERSION OF MOD | MOD JAR
Sometimes finding the mod is as easy as finding the mod thats got an E in it’s state, For example:
| UCHIJE | testmod | 1.0 | mod.jar
If that isn’t the case then you’ll need to do the second method which is more common. Many mod crashes will mention a Java class, for example the most common layout for these is:
at TLD(like com, net, etc).AUTHOR.MODID.CLASS(FILE:LINE)
Here’s an example using that layout:
at com.mrcrayfish.guns.object.Bullet.tick(Bullet.java:55)
In this case it would be Mrcrayfish Guns that’s causing the crash