diff --git a/proposal/myrmidon/src/main/org/apache/tools/ant/ExitException.java b/proposal/myrmidon/src/main/org/apache/tools/ant/ExitException.java deleted file mode 100644 index 8e812b1f2..000000000 --- a/proposal/myrmidon/src/main/org/apache/tools/ant/ExitException.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (C) The Apache Software Foundation. All rights reserved. - * - * This software is published under the terms of the Apache Software License - * version 1.1, a copy of which has been included with this distribution in - * the LICENSE file. - */ -package org.apache.tools.ant; - -/** - * Used to report exit status of classes which call System.exit() - * - * @author Conor MacNeill - * @see NoExitSecurityManager - */ -public class ExitException extends SecurityException -{ - - private int status; - - /** - * Constructs an exit exception. - * - * @param status the status code returned via System.exit() - */ - public ExitException( int status ) - { - super( "ExitException: status " + status ); - this.status = status; - } - - /** - * @return the status code return via System.exit() - */ - public int getStatus() - { - return status; - } -} diff --git a/proposal/myrmidon/src/todo/org/apache/tools/ant/ExitException.java b/proposal/myrmidon/src/todo/org/apache/tools/ant/ExitException.java deleted file mode 100644 index 8e812b1f2..000000000 --- a/proposal/myrmidon/src/todo/org/apache/tools/ant/ExitException.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (C) The Apache Software Foundation. All rights reserved. - * - * This software is published under the terms of the Apache Software License - * version 1.1, a copy of which has been included with this distribution in - * the LICENSE file. - */ -package org.apache.tools.ant; - -/** - * Used to report exit status of classes which call System.exit() - * - * @author Conor MacNeill - * @see NoExitSecurityManager - */ -public class ExitException extends SecurityException -{ - - private int status; - - /** - * Constructs an exit exception. - * - * @param status the status code returned via System.exit() - */ - public ExitException( int status ) - { - super( "ExitException: status " + status ); - this.status = status; - } - - /** - * @return the status code return via System.exit() - */ - public int getStatus() - { - return status; - } -}