1 package uk.ac.ebi.intenz.tools.sib.exceptions; 2 3 /** 4 * This exception is used to indicate an error in the syntax of an ENZYME entry. 5 * 6 * @author Michael Darsow 7 * @version $Revision: 1.2 $ $Date: 2008/01/28 11:43:23 $ 8 */ 9 public class EnzymeEntryValidationException extends Exception { 10 11 public EnzymeEntryValidationException(String message) { 12 super(message); 13 } 14 15 }