com.ctc.wstx.exc.WstxUnexpectedCharException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodstox-core-lgpl Show documentation
Show all versions of woodstox-core-lgpl Show documentation
Woodstox is a high-performance XML processor that
implements Stax (JSR-173) and SAX2 APIs
The newest version!
package com.ctc.wstx.exc;
import javax.xml.stream.Location;
/**
* Generic exception type that indicates that tokenizer/parser encountered
* unexpected (but not necessarily invalid per se) character; character that
* is not legal in current context. Could happen, for example, if white space
* was missing between attribute value and name of next attribute.
*/
public class WstxUnexpectedCharException
extends WstxParsingException
{
private static final long serialVersionUID = 1L;
final char mChar;
public WstxUnexpectedCharException(String msg, Location loc, char c) {
super(msg, loc);
mChar = c;
}
public char getChar() {
return mChar;
}
}