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. * A NoSuchObjectLocalException is thrown if an attempt is made to invoke
  8. * a method on an object that no longer exists.
  9. */
  10. public class NoSuchObjectLocalException extends EJBException {
  11. /**
  12. * Constructs a NoSuchObjectLocalException with no detail message.
  13. */
  14. public NoSuchObjectLocalException() {
  15. }
  16. /**
  17. * Constructs a NoSuchObjectLocalException with the specified
  18. * detail message.
  19. */
  20. public NoSuchObjectLocalException(String message) {
  21. super(message);
  22. }
  23. /**
  24. * Constructs a NoSuchObjectLocalException with the specified
  25. * detail message and a nested exception.
  26. */
  27. public NoSuchObjectLocalException(String message, Exception ex) {
  28. super(message, ex);
  29. }
  30. }