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 Exception is thrown, when the connection to a server returns unexpected values */ public class UnexpectedAnswerException extends NetworkException { /** Constructs a new exception with null as its detail message. */ public UnexpectedAnswerException() { super(); } /** Constructs a new exception with the specified detail message. */ public UnexpectedAnswerException(String message) { super(message); } /** Constructs a new exception with the specified detail message and cause. */ public UnexpectedAnswerException(String message, Throwable cause) { super(message); } /** 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 UnexpectedAnswerException(Throwable cause) { super(); } }