• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package de.timroes.axmlrpc;
2 
3 /**
4  * Will be thrown when a call to the server times out. The timeout can be
5  * set via {@link XMLRPCClient#setTimeout(int)}.
6  *
7  * @author Tim Roes
8  */
9 public class XMLRPCTimeoutException extends XMLRPCException {
10 
XMLRPCTimeoutException(String ex)11 	XMLRPCTimeoutException(String ex) {
12 		super(ex);
13 	}
14 
15 }
16