1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.ejb;
  6. /**
  7. * The RemoveException exception is thrown at an attempt to remove
  8. * an EJB object when the enterprise Bean or the container does not allow
  9. * the EJB object to be removed.
  10. */
  11. public class RemoveException extends java.lang.Exception {
  12. /**
  13. * Constructs an RemoveException with no detail message.
  14. */
  15. public RemoveException() {
  16. }
  17. /**
  18. * Constructs an RemoveException with the specified
  19. * detail message.
  20. */
  21. public RemoveException(String message) {
  22. super(message);
  23. }
  24. }