FileDocCategorySizeDatePackage
MessageEOFException.javaAPI DocGlassfish v2 API2949Fri May 04 22:36:16 BST 2007javax.jms

MessageEOFException

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.

version
26 August 1998
author
Rahul Sharma

Fields Summary
Constructors Summary
public MessageEOFException(String reason, String errorCode)
Constructs a MessageEOFException with the specified reason and error code.

param
reason a description of the exception
param
errorCode a string specifying the vendor-specific error code

    super(reason, errorCode);
  
public MessageEOFException(String reason)
Constructs a MessageEOFException with the specified reason. The error code defaults to null.

param
reason a description of the exception

    super(reason);
  
Methods Summary