Package javax.ejb

Class NoSuchObjectLocalException



  • public class NoSuchObjectLocalException
    extends EJBException
    A NoSuchObjectLocalException is thrown if an attempt is made to invoke a method on a local object (local EJB object or timer) that no longer exists.
    Since:
    EJB 2.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NoSuchObjectLocalException​()
      Constructs a NoSuchObjectLocalException with no detail message.
      NoSuchObjectLocalException​(java.lang.String message)
      Constructs a NoSuchObjectLocalException with the specified detail message.
      NoSuchObjectLocalException​(java.lang.String message, java.lang.Exception ex)
      Constructs a NoSuchObjectLocalException with the specified detail message and a nested exception.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • NoSuchObjectLocalException

        public NoSuchObjectLocalException​()
        Constructs a NoSuchObjectLocalException with no detail message.
      • NoSuchObjectLocalException

        public NoSuchObjectLocalException​(java.lang.String message)
        Constructs a NoSuchObjectLocalException with the specified detail message.
      • NoSuchObjectLocalException

        public NoSuchObjectLocalException​(java.lang.String message,
                                          java.lang.Exception ex)
        Constructs a NoSuchObjectLocalException with the specified detail message and a nested exception.