1 package uk.ac.ebi.intenz.domain.exceptions;
2
3
4 /**
5 * If an error regarding an enzyme reaction occurs this exception should be thrown.
6 * <p/>
7 * Currently this <code>Exception</code> is thrown when:
8 * <ul>
9 * <li>a client attempts to store an empty list of reactions</li>
10 * </ul>
11 *
12 * @author Michael Darsow
13 * @version $Revision: 1.2 $ $Date: 2008/01/28 12:33:08 $
14 */
15 public class EnzymeReactionException extends DomainException {
16
17 private static final long serialVersionUID = -5288612034876625163L;
18
19 public EnzymeReactionException(){}
20
21 public EnzymeReactionException(String message) {
22 super(message);
23 }
24 }