01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: *
17: */
18: package org.apache.tools.ant;
19:
20: /**
21: * Used to report exit status of classes which call System.exit().
22: *
23: * @see org.apache.tools.ant.util.optional.NoExitSecurityManager
24: * @see org.apache.tools.ant.types.Permissions
25: *
26: */
27: public class ExitException extends SecurityException {
28:
29: /** Status code */
30: private int status;
31:
32: /**
33: * Constructs an exit exception.
34: * @param status the status code returned via System.exit()
35: */
36: public ExitException(int status) {
37: super ("ExitException: status " + status);
38: this .status = status;
39: }
40:
41: /**
42: * Constructs an exit exception.
43: * @param msg the message to be displayed.
44: * @param status the status code returned via System.exit()
45: */
46: public ExitException(String msg, int status) {
47: super (msg);
48: this .status = status;
49: }
50:
51: /**
52: * The status code returned by System.exit()
53: *
54: * @return the status code returned by System.exit()
55: */
56: public int getStatus() {
57: return status;
58: }
59: }
|