/* Author: Jeff Dalton <J.Dalton@ed.ac.uk>
 * Updated: Fri Mar 27 03:28:16 1998 by Jeff Dalton
 */

package ix.util.lisp;

/**
 * The class of errors thrown by the Lisp reader.
 */

public class LispReadException extends RuntimeException {

    LispReadException(String message) {
	super(message);
    }

}
