1 package uk.ac.ebi.intenz.domain.exceptions;
2
3
4 /**
5 * This exception is thrown when a EC number is not valid (e.g. used numbers are out of range) or cannot be assigned
6 * because the corresponding class/subclass/sub-subclass does not exist.
7 *
8 * @author Michael Darsow
9 * @version $Revision: 1.2 $ $Date: 2008/01/28 12:33:08 $
10 */
11 public class EcException extends DomainException {
12
13 private static final long serialVersionUID = 7460755784911875672L;
14
15 public EcException(){}
16
17 public EcException(String message) {
18 super(message);
19 }
20 }