/* $Id: LPCDataFormatException.java,v 1.1.1.1 1998/10/27 20:34:03 borg Exp $ */
/* Copyright (c) 1997 George Reese */
package com.imaginary.mud;

/**
 * This exception is thrown when a problem occurs matching text according
 * to a specified format.
 * <BR>
 * Last modified $Date: 1998/10/27 20:34:03 $
 * @version $Revision: 1.1.1.1 $
 * @author George Reese (borg@imaginary.com)
 */
public class LPCDataFormatException extends Exception {
    /**
     * Constructs a LPCDataFormatException with the specified problem.
     * @param problem the formatting issue
     */
    public LPCDataFormatException(String problem) {
	super(problem);
    }
}