WikiApiException.java :  » Wiki-Engine » jwpl » de » tudarmstadt » ukp » wikipedia » api » exception » Java Open Source

Java Open Source » Wiki Engine » jwpl 
jwpl » de » tudarmstadt » ukp » wikipedia » api » exception » WikiApiException.java
/*******************************************************************************
 * Copyright (c) 2010 Torsten Zesch.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v3
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl.html
 * 
 * Contributors:
 *     Torsten Zesch - initial API and implementation
 ******************************************************************************/
package de.tudarmstadt.ukp.wikipedia.api.exception;


public class WikiApiException extends WikiException {

    static final long serialVersionUID = 1L;

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