//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\ // PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\ //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\ namespace Ilog.Language.Parsing { /** * Signals an unrecoverable error in the parsing. * * @see GenericParser * * @version Last modified on Thu May 26 12:52:16 2005 by hak * @author Hassan Aït-Kaci * @copyright © 2000 ILOG, S.A. */ public class FatalParseErrorException : System.ApplicationException { /** * Constructs an empty FatalParseErrorException. */ public FatalParseErrorException () { } /** * Constructs a FatalParseErrorException with the specified message. */ public FatalParseErrorException (string msg) : base(msg) { } } }