lib/browser/GraphBrowser/ParseError.java
author wenzelm
Sat, 30 Nov 2013 15:05:10 +0100
changeset 54651 d71e7908eec3
parent 13973 9170772bf420
permissions -rw-r--r--
more thorough read_pid with extra delay, to give external process a chance to write pid file before attempting to terminate it -- especially relevant for PIDE document processing, where interrupts can happen in the range of milliseconds;

package GraphBrowser;

class ParseError extends Exception {
	public ParseError(String s) { super(s); }
}