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 3106 2006-03-13 17:53:50Z gbevin $ 007 */ 008package 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: 3106 $ 016 * @since 1.0 017 */ 018public 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}