1 //Copyright 2007-2008, 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 package gov.nasa.pds.ltdt.label.reformat; 14 15 public class NoIndexFoundException extends Exception { 16 17 private static final long serialVersionUID = -6183436524597455298L; 18 19 public NoIndexFoundException(String message) { 20 super(message); 21 } 22 }