1 package org.smartcomps.twister.engine.exception;
2
3 /***
4 * Thrown when a variable that has not been initialized must be
5 * manipulated. Corresponds to the bpws:uninitializedVariable fault.
6 */
7 public class UninitializedVariableException extends ExecutionException {
8
9 public UninitializedVariableException(String s) {
10 super(s);
11 }
12
13 public UninitializedVariableException(String s, Throwable throwable) {
14 super(s, throwable);
15 }
16
17 public UninitializedVariableException(Throwable throwable) {
18 super(throwable);
19 }
20 }
This page was automatically generated by Maven