1 package org.smartcomps.twister.engine.exception;
2 /***
3 * Exception corresponding to the bpws:selectionFailure fault.
4 */
5 public class SelectionFailureException extends ExecutionException {
6 public SelectionFailureException(String s) {
7 super(s);
8 }
9
10 public SelectionFailureException(String s, Throwable throwable) {
11 super(s, throwable);
12 }
13
14 public SelectionFailureException(Throwable throwable) {
15 super(throwable);
16 }
17 }
This page was automatically generated by Maven