Implemeted action for uploading Wikipedia articles (thanks to D.Wunsch)
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / exceptions / UnsupportedWikiException.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.exceptions;
2 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
3 //http://www.djini.de/software/wikipedia/index.html
4 //
5 //The modified sources are available under the "Common Public License"
6 //with permission from the original author: Daniel Wunsch
7 /** 
8  * this wiki is not supported 
9  */ 
10 public class UnsupportedWikiException extends NetworkException {
11         /** Constructs a new exception with null as its detail message. */
12         public UnsupportedWikiException() {
13                 super();
14         }
15         
16         /** Constructs a new exception with the specified detail message. */
17         public UnsupportedWikiException(String message) {
18                 super(message);
19         }
20         
21         /** Constructs a new exception with the specified detail message and cause. */
22         public UnsupportedWikiException(String message, Throwable cause) {
23                 super(message, cause);
24         }
25
26         /** Constructs a new exception with the specified cause and a detail 
27                 message of (cause==null ? null : cause.toString()) (which 
28                 typically contains the class and detail message of cause). */
29         public UnsupportedWikiException(Throwable cause) {
30                 super(cause);   
31         } 
32 }