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 / UploadForbiddenException.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.exceptions;
2
3 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
4 //http://www.djini.de/software/wikipedia/index.html
5 //
6 //The modified sources are available under the "Common Public License"
7 //with permission from the original author: Daniel Wunsch
8
9 /** 
10  * a File cannot be uploaded 
11  */ 
12 public class UploadForbiddenException extends NetworkException {
13         /** Constructs a new exception with null as its detail message. */
14         public UploadForbiddenException() {
15                 super();
16         }
17         
18         /** Constructs a new exception with the specified detail message. */
19         public UploadForbiddenException(String message) {
20                 super(message);
21         }
22         
23         /** Constructs a new exception with the specified detail message and cause. */
24         public UploadForbiddenException(String message, Throwable cause) {
25                 super(message, cause);
26         }
27
28         /** Constructs a new exception with the specified cause and a detail 
29                 message of (cause==null ? null : cause.toString()) (which 
30                 typically contains the class and detail message of cause). */
31         public UploadForbiddenException(Throwable cause) {
32                 super(cause);   
33         } 
34 }