1 /* 2 * Copyright 1999,2004 The Apache Software Foundation. Licensed under the 3 * Apache License, Version 2.0 (the "License"); you may not use this file 4 * except in compliance with the License. You may obtain a copy of the License 5 * at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable 6 * law or agreed to in writing, software distributed under the License is 7 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 * KIND, either express or implied. See the License for the specific language 9 * governing permissions and limitations under the License. 10 */ 11 package org.apache.catalina.ssi; 12 13 14 /** 15 * Exception used to tell SSIProcessor that it should stop processing SSI 16 * commands. This is used to mimick the Apache behavior in #set with invalid 17 * attributes. 18 * 19 * @author Paul Speed 20 * @author Dan Sandberg 21 * @version $Revision: 467222 $, $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ 22 */ 23 public class SSIStopProcessingException extends Exception { 24 }