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.

AntException.java 494 B

123456789101112131415161718192021
  1. // -------------------------------------------------------------------------------
  2. // Copyright (c)2000 Apache Software Foundation
  3. // -------------------------------------------------------------------------------
  4. package org.apache.ant;
  5. /**
  6. * Signals a problem.
  7. *
  8. * @author James Duncan Davidson (duncan@apache.org)
  9. */
  10. public class AntException extends Exception {
  11. public AntException() {
  12. super();
  13. }
  14. public AntException(String msg) {
  15. super(msg);
  16. }
  17. }