Package jakarta.jms

Class MessageEOFException

All Implemented Interfaces:
Serializable

public class MessageEOFException extends JMSException
This exception must be thrown when an unexpected end of stream has been reached when a StreamMessage or BytesMessage is being read.
Since:
JMS 1.0
Version:
Jakarta Messaging 2.0
See Also:
  • Constructor Details

    • MessageEOFException

      public MessageEOFException(String reason, String errorCode, Exception linkedException)
      Constructs a MessageEOFException with the specified reason, error code and linked exception.
      Parameters:
      reason - a description of the exception
      errorCode - a string specifying the vendor-specific error code
      linkedException - a linked exception
    • MessageEOFException

      public MessageEOFException(String reason, String errorCode)
      Constructs a MessageEOFException with the specified reason and error code.
      Parameters:
      reason - a description of the exception
      errorCode - a string specifying the vendor-specific error code
    • MessageEOFException

      public MessageEOFException(String reason)
      Constructs a MessageEOFException with the specified reason. The error code defaults to null.
      Parameters:
      reason - a description of the exception