ApplicationException.java :  » Web-Framework » jWebApp » jcommontk » utils » Java Open Source

Java Open Source » Web Framework » jWebApp 
jWebApp » jcommontk » utils » ApplicationException.java
/**
 * 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); }
  }

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.