/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * JFlex 1.8.2                                                             *
 * Copyright (C) 1998-2018  Gerwin Klein <lsf@jflex.de>                    *
 * All rights reserved.                                                    *
 *                                                                         *
 * License: BSD                                                            *
 *                                                                         *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

package jflex.exceptions;

This Exception is used in class CharClasses.
Author:Gerwin Klein
Version:JFlex 1.8.2
/** * This Exception is used in class CharClasses. * * @author Gerwin Klein * @version JFlex 1.8.2 */
public class CharClassException extends RuntimeException { private static final long serialVersionUID = 7199804506062103569L;
Creates a new CharClassException with the specified message
Params:
  • message – the error description presented to the user.
/** * Creates a new CharClassException with the specified message * * @param message the error description presented to the user. */
public CharClassException(String message) { super(message); } }