MyException.java 502 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2008 Happy Fish / YuQing
  3. *
  4. * FastDFS Java Client may be copied only under the terms of the GNU Lesser
  5. * General Public License (LGPL).
  6. * Please visit the FastDFS Home Page http://www.csource.org/ for more detail.
  7. */
  8. package org.csource.common;
  9. /**
  10. * My Exception
  11. * @author Happy Fish / YuQing
  12. * @version Version 1.0
  13. */
  14. public class MyException extends Exception
  15. {
  16. public MyException()
  17. {
  18. }
  19. public MyException(String message)
  20. {
  21. super(message);
  22. }
  23. }