Uses of Class
de.dante.extex.scanner.exception.ScannerException

Packages that use ScannerException
de.dante.extex.scanner.stream This package contains the stream definitions and implementations supported for the scanner. 
de.dante.extex.scanner.stream.exception This package contains the exception classes for the stream implementations. 
de.dante.extex.scanner.stream.impl This package contains a basic implementation for a TokenStream
de.dante.extex.scanner.stream.impl32 This package contains the implementations for different TokenStream implementations. 
 

Uses of ScannerException in de.dante.extex.scanner.stream
 

Methods in de.dante.extex.scanner.stream that throw ScannerException
 Token TokenStream.get(TokenFactory factory, Tokenizer tokenizer)
          Get the next token from the token stream.
 boolean TokenStream.isEof()
          Check to see if a further token can be acquired from the token stream.
 boolean TokenStream.isEol()
          Check to see if the token stream is currently at the end of line.
 

Uses of ScannerException in de.dante.extex.scanner.stream.exception
 

Subclasses of ScannerException in de.dante.extex.scanner.stream.exception
 class InvalidCharacterScannerException
          This is thrown when an invalid character has been encountered.
 class ScannerNoHexDigitFoundException
          ScannerException, if no hex digit are not found after '^^^^'.
 class ScannerNoUnicodeNameException
          ScannerException, if a wrong Unicode name is given.
 

Uses of ScannerException in de.dante.extex.scanner.stream.impl
 

Methods in de.dante.extex.scanner.stream.impl that throw ScannerException
protected  UnicodeChar TokenStreamImpl.getChar(Tokenizer tokenizer)
          Return the next character to process.
protected  Token TokenStreamImpl.getNext(TokenFactory factory, Tokenizer tokenizer)
           
 boolean TokenStreamImpl.isEof()
           
protected  boolean TokenStreamImpl.refill()
          Get the next line from the input reader to be processed.
 Token TokenStreamBaseImpl.get(TokenFactory factory, Tokenizer tokenizer)
           
protected  Token TokenStreamBaseImpl.getNext(TokenFactory factory, Tokenizer tokenizer)
          Get the next token when the stack is empty.
 boolean TokenStreamBaseImpl.isEof()
          Test for end of file.
 boolean TokenStreamBaseImpl.isEol()
           
 

Uses of ScannerException in de.dante.extex.scanner.stream.impl32
 

Methods in de.dante.extex.scanner.stream.impl32 that throw ScannerException
protected  UnicodeChar TokenStreamImpl32.getChar(Tokenizer tokenizer)