All Examples  All EJB Examples  This Package

Class examples.ejb.basic.statefulSession.ProcessingErrorException


java.lang.Object

    |

    +----java.lang.Throwable

            |

            +----java.lang.Exception

                    |

                    +----examples.ejb.basic.statefulSession.ProcessingErrorException


public class ProcessingErrorException
extends java.lang.Exception
This class is used with the examples.ejb.statefulSession package. ProcessingErrorException is thrown if an error occurs while either buying or selling a stock.


Constructor Index

 o ProcessingErrorException()
Catches exceptions without a specified string
 o ProcessingErrorException(String)
Constructs the appropriate exception with the specified string

Constructor Detail

 o ProcessingErrorException

public ProcessingErrorException()
          Catches exceptions without a specified string
 o ProcessingErrorException

public ProcessingErrorException(java.lang.String message)
          Constructs the appropriate exception with the specified string
Parameters:
message - Exception message


All Examples  All EJB Examples  This Package