You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // -------------------------------------------------------------------------------
- // Copyright (c)2000 Apache Software Foundation
- // -------------------------------------------------------------------------------
-
- package org.apache.ant;
-
- /**
- * Signals a problem.
- *
- * @author James Duncan Davidson (duncan@apache.org)
- */
- public class AntException extends Exception {
-
- public AntException() {
- super();
- }
-
- public AntException(String msg) {
- super(msg);
- }
- }
|