WingException.java :  » Search » dspace-semantic-search » org » dspace » app » xmlui » wing » Java Open Source

Java Open Source » Search » dspace semantic search 
dspace semantic search » org » dspace » app » xmlui » wing » WingException.java
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.app.xmlui.wing;

/**
 * A class representing an error generated by the Wing framework.
 * 
 * @author Scott Phillips
 */
public class WingException extends Exception
{
    // Because exception is serializable.
    public static final long serialVersionUID = 1;

    public WingException(String message)
    {
        super(message, null);
    }

    public WingException(Throwable t)
    {
        super(t);
    }

    public WingException(String message, Throwable t)
    {
        super(message, t);
    }
    
}
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.