All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.legstar.cob2xsd.antlr.RecognizerException Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2010 LegSem.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v2.1
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * 
 * Contributors:
 *     LegSem - initial API and implementation
 ******************************************************************************/
package com.legstar.cob2xsd.antlr;

/**
 * A generic exception that denotes that something went wrong during
 * one of the recognizer steps.
 *
 */
public class RecognizerException extends Exception {

    /**
     * A serial ID.
     */
    private static final long serialVersionUID = 5779328201830905335L;

    /**
     * @param msg the exception message
     */
    public RecognizerException(final String msg) {
        super(msg);
    }

    /**
     * @param e the exception
     */
    public RecognizerException(final Throwable e) {
        super(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy