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 / PageNotEditableException.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 /** 
9  * a Page can not be edited 
10  */ 
11 public class PageNotEditableException extends NetworkException {
12         /** Constructs a new exception with null as its detail message. */
13         public PageNotEditableException() {
14                 super();
15         }
16         
17         /** Constructs a new exception with the specified detail message. */
18         public PageNotEditableException(String message) {
19                 super(message);
20         }
21         
22         /** Constructs a new exception with the specified detail message and cause. */
23         public PageNotEditableException(String message, Throwable cause) {
24                 super(message, cause);
25         }
26
27         /** Constructs a new exception with the specified cause and a detail 
28                 message of (cause==null ? null : cause.toString()) (which 
29                 typically contains the class and detail message of cause). */
30         public PageNotEditableException(Throwable cause) {
31                 super(cause);   
32         } 
33 }