]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/channel/RequestException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / channel / RequestException.java
1 package org.simantics.databoard.channel;\r
2 \r
3 import java.io.IOException;\r
4 import java.util.concurrent.TimeoutException;\r
5 \r
6 /**\r
7  * RequestException is thrown to a requester of a service when there was a \r
8  * problem fulfilling the request. Typical error is problem with communication \r
9  * channel or with fulfulling the service. \r
10  *\r
11  * Cause is (typically) one of these:\r
12  *  o Communication problems {@link IOException}\r
13  *  o Timeout {@link TimeoutException}\r
14  *  o Service handler problem {@link ServiceException} \r
15  *\r
16  * @author Toni Kalajainen <toni.kalajainen@iki.fi>\r
17  */\r
18 public class RequestException extends Exception {\r
19 \r
20         private static final long serialVersionUID = 1L;\r
21 \r
22         public RequestException(Throwable cause) {\r
23                 super(cause);\r
24         }\r
25 \r
26 }\r