1 package net.sf.saxon.instruct; 2 import net.sf.saxon.trans.XPathException; 3 4 /** 5 * This exception is thrown by code when execution of an instruction has failed, 6 * and the recovery action is to continue with the next instruction. 7 */ 8 9 public class SkipInstructionException extends XPathException { 10 11 /** 12 * Construct a SkipInstructionException 13 * @param message the message text 14 */ 15 16 public SkipInstructionException(String message) { 17 super(message); 18 } 19 } 20 21 // 22 // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); 23 // you may not use this file except in compliance with the License. You may obtain a copy of the 24 // License at http://www.mozilla.org/MPL/ 25 // 26 // Software distributed under the License is distributed on an "AS IS" basis, 27 // WITHOUT WARRANTY OF ANY KIND, either express or implied. 28 // See the License for the specific language governing rights and limitations under the License. 29 // 30 // The Original Code is: all this file. 31 // 32 // The Initial Developer of the Original Code is Michael H. Kay. 33 // 34 // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved. 35 // 36 // Contributor(s): 37 // Portions marked "e.g." are from Edwin Glaser (edwin@pannenleiter.de) 38 // 39