Source code: org/embl/ebi/escience/scuflui/workbench/ScavengerCreationException.java
1 /**
2 * This file is a component of the Taverna project,
3 * and is licensed under the GNU LGPL.
4 * Copyright Tom Oinn, EMBL-EBI
5 */
6 package org.embl.ebi.escience.scuflui.workbench;
7
8 /**
9 * Signifies that a scavenger failed during instantiation,
10 * most commonly because of network unavailability.
11 * @author Tom Oinn
12 */
13 public class ScavengerCreationException extends Exception {
14
15 public ScavengerCreationException(String message) {
16 super(message);
17 }
18
19 }