1: package com.jclark.xml.tok;
2:
3: /**
4: * Thrown to indicate that the byte subarray being tokenized does not start
5: * with a legal XML token but might be one if the subarray were extended.
6: * @version $Revision: 1.2 $ $Date: 1998/02/17 04:24:13 $
7: */
8: public class PartialTokenException extends TokenException {
9: }
|