Restore inherited 'throws Exception' to doStop overrides to ease subclassing

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@402 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
David Jencks 2009-06-16 01:36:10 +00:00
parent 597903c512
commit ce676c1c9e
3 changed files with 4 additions and 1 deletions

View File

@ -76,6 +76,7 @@ public class FilterHolder extends Holder
/* ------------------------------------------------------------ */
public void doStop()
throws Exception
{
if (_filter!=null)
{

View File

@ -85,6 +85,7 @@ public class Holder extends AbstractLifeCycle
/* ------------------------------------------------------------ */
public void doStop()
throws Exception
{
if (!_extInstance)
_class=null;

View File

@ -216,7 +216,7 @@ public class ServletHolder extends Holder implements UserIdentity.Scope, Compara
/* ------------------------------------------------------------ */
public void doStart()
throws Exception
throws Exception
{
_unavailable=0;
try
@ -256,6 +256,7 @@ public class ServletHolder extends Holder implements UserIdentity.Scope, Compara
/* ------------------------------------------------------------ */
public void doStop()
throws Exception
{
Object old_run_as = null;
if (_servlet!=null)