/** * 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); } }