Adding AbortException used in res.abort().
This commit is contained in:
parent
d15113234e
commit
255d6e9812
1 changed files with 27 additions and 0 deletions
27
src/helma/framework/AbortException.java
Normal file
27
src/helma/framework/AbortException.java
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* Helma License Notice
|
||||||
|
*
|
||||||
|
* The contents of this file are subject to the Helma License
|
||||||
|
* Version 2.0 (the "License"). You may not use this file except in
|
||||||
|
* compliance with the License. A copy of the License is available at
|
||||||
|
* http://adele.helma.org/download/helma/license.txt
|
||||||
|
*
|
||||||
|
* Copyright 1998-2003 Helma Software. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* $RCSfile$
|
||||||
|
* $Author$
|
||||||
|
* $Revision$
|
||||||
|
* $Date$
|
||||||
|
*/
|
||||||
|
|
||||||
|
package helma.framework;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AbortException is thrown internally when a response is aborted.
|
||||||
|
* Although this is not an Error, it subclasses java.lang.Error
|
||||||
|
* because it's not meant to be caught by application code (similar to
|
||||||
|
* java.lang.ThreadDeath).
|
||||||
|
*/
|
||||||
|
public class AbortException extends Error {
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue