/**
* Copyright (C) 2006, 2007 David Bulmore, Software Sensation Inc.
* All Rights Reserved.
*
* This file is part of jCommonTk.
*
* jCommonTk is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License (Version 2) as published by
* the Free Software Foundation.
*
* jCommonTk is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with jCommonTk; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package jcommontk.utils;
import jcommontk.utils.ExceptionUtils.JCommonException;
public class ApplicationException extends JCommonException
{
private static final long serialVersionUID = 100L;
public ApplicationException(Throwable cause) { super(cause); }
public ApplicationException(String message) { super(message); }
public ApplicationException(String message, Throwable cause) { super(message, cause); }
}
|