1 // Copyright 2006-2007, by the California Institute of Technology. 2 // ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged. 3 // Any commercial use must be negotiated with the Office of Technology Transfer 4 // at the California Institute of Technology. 5 // 6 // This software is subject to U. S. export control laws and regulations 7 // (22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software 8 // is subject to U.S. export control laws and regulations, the recipient has 9 // the responsibility to obtain export licenses or other export authority as 10 // may be required before exporting such information to foreign countries or 11 // providing access to foreign nationals. 12 // 13 // $Id: UnknownDefinitionException.java 2601 2007-04-12 18:34:25Z pramirez $ 14 // 15 16 package gov.nasa.pds.tools.dict.parser; 17 18 19 /*** 20 * This exception will be thrown when the type of definition can not be determined. 21 * 22 * @author pramirez 23 * @version $Revision: 2601 $ 24 * 25 */ 26 public class UnknownDefinitionException extends Exception { 27 private static final long serialVersionUID = 3768577117762341629L; 28 29 public UnknownDefinitionException(String message) { 30 super(message); 31 } 32 33 }