FileDocCategorySizeDatePackage
SystemException.javaAPI DocGlassfish v2 API2886Fri May 04 22:35:24 BST 2007javax.transaction

SystemException

public class SystemException extends Exception
The SystemException is thrown by the transaction manager to indicate that it has encountered an unexpected error condition that prevents future transaction services from proceeding.

Fields Summary
public int
errorCode
The error code with which to create the SystemException.
Constructors Summary
public SystemException()

    	super();
    
public SystemException(String s)
Create a SystemException with a given string.

param
s The string message for the exception

    	super(s);
    
public SystemException(int errcode)
Create a SystemException with a given error code.

param
errcode The error code for the exception

    	super();
    	errorCode = errcode;
    
Methods Summary