Source code: org/embl/ebi/escience/scufl/parser/XScuflFormatException.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.scufl.parser;
7
8 /**
9 * Thrown by the ScuflModel when it can't find a
10 * particular named processor.
11 * @author Tom Oinn
12 */
13 public class XScuflFormatException extends Exception {
14
15 public XScuflFormatException(String the_message) {
16 super(the_message);
17 }
18
19 }