package net.sourceforge.phpeclipse.wiki.actions.mediawiki.exceptions; //Parts of this sources are copied and modified from the jEdit Wikipedia plugin: //http://www.djini.de/software/wikipedia/index.html // //The modified sources are available under the "Common Public License" //with permission from the original author: Daniel Wunsch /** * this wiki is not supported */ public class UnsupportedWikiException extends NetworkException { /** Constructs a new exception with null as its detail message. */ public UnsupportedWikiException() { super(); } /** Constructs a new exception with the specified detail message. */ public UnsupportedWikiException(String message) { super(message); } /** Constructs a new exception with the specified detail message and cause. */ public UnsupportedWikiException(String message, Throwable cause) { super(message, cause); } /** Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). */ public UnsupportedWikiException(Throwable cause) { super(cause); } }