{
/* This is silly, but coverage testing is not happy that our
* error-constant-defining class is never constructed.
* So here we go, just to mark it off the list...
*/
ErrorConsts ec = new ErrorConsts();
assertNotNull(ec); // silly, but otherwise eclipse would about unused..
assertNotNull(ErrorConsts.tokenTypeDesc(XMLStreamConstants.START_DOCUMENT));
assertNotNull(ErrorConsts.tokenTypeDesc(XMLStreamConstants.END_DOCUMENT));
assertNotNull(ErrorConsts.tokenTypeDesc(XMLStreamConstants.ATTRIBUTE));
}