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 / NetworkException.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.exceptions;
2
3 /** 
4  * base class for Exceptions thrown when something has gone wrong with the networking 
5  * 
6  */ 
7 public abstract class NetworkException extends Exception {
8         /** Constructs a new exception with null as its detail message. */
9         public NetworkException() {
10                 super();
11         }
12         
13         /** Constructs a new exception with the specified detail message. */
14         public NetworkException(String message) {
15                 super(message);
16         }
17         
18         /** Constructs a new exception with the specified detail message and cause. */
19         public NetworkException(String message, Throwable cause) {
20                 super(message, cause);
21         }
22
23         /** Constructs a new exception with the specified cause and a detail 
24                 message of (cause==null ? null : cause.toString()) (which 
25                 typically contains the class and detail message of cause). */
26         public NetworkException(Throwable cause) {
27                 super(cause);   
28         } 
29 }