1 /*
2 * Copyright (c) 2005, The K-Wf Grid Consortium
3 * Fraunhofer Institute for Computer Architecture and Software Technology
4 * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
5 */
6 package net.kwfgrid.gworkflowdl.protocol.calls;
7
8 /***
9 A RuntimeException to wrap exceptions occuring during method call execution.
10 */
11 public class MethodCallException extends RuntimeException {
12 public MethodCallException(Throwable cause) {
13 this("", cause);
14 }
15
16 public MethodCallException(String message, Throwable cause) {
17 super(message, cause);
18 }
19 }