Details
Description
The FieldNotFound exception contains a useful exception description, which can be fetched with e.getMessage():
public FieldNotFound(int field) { super("Field ["+field+"] was not found in message."); this.field = field; }
but other FIX exceptions as IncorrectTagValue or NoTagValue etc. lacks these description text.
This is not consistent with the second constructor using a String description text.
Provide useful description text for IncorrectTagValue, NoTagValue and possibly other FIX exceptions.