1 package uk.ac.ebi.intenz.domain.exceptions;
2
3
4 /**
5 * If an error regarding an enzyme reference 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 references</li>
10 * </ul>
11 *
12 * @author Michael Darsow
13 * @version $Revision: 1.2 $ $Date: 2008/01/28 12:33:08 $
14 */
15 public class EnzymeReferenceException extends DomainException {
16
17 private static final long serialVersionUID = 1347812603822224978L;
18
19 public EnzymeReferenceException(){}
20
21 public EnzymeReferenceException(String message) {
22 super(message);
23 }
24 }