001    /*
002     * Copyright 2001-2006 Geert Bevin <gbevin[remove] at uwyn dot com>
003     * Distributed under the terms of either:
004     * - the common development and distribution license (CDDL), v1.0; or
005     * - the GNU Lesser General Public License, v2.1 or later
006     * $Id: FileUtilsErrorException.java 3108 2006-03-13 18:03:00Z gbevin $
007     */
008    package com.uwyn.jhighlight.tools.exceptions;
009    
010    /**
011     * Exception that will be trigger when unexpected errors occur during the
012     * functionalities of the {@link com.uwyn.jhighlight.tools.FileUtils} class.
013     * 
014     * @author Geert Bevin (gbevin[remove] at uwyn dot com)
015     * @version $Revision: 3108 $
016     * @since 1.0
017     */
018    public class FileUtilsErrorException extends Exception
019    {
020            public FileUtilsErrorException(String message)
021            {
022                    super(message);
023            }
024            
025            public FileUtilsErrorException(String message, Throwable cause)
026            {
027                    super(message, cause);
028            }
029    }