All Examples  All Cluster Examples  This Example  This Package

Class examples.cluster.ejb.teller.TellerException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----examples.cluster.ejb.teller.TellerException

public class TellerException
extends Exception
This class is used with the examples.cluster.ejb.teller package. TellerException is thrown if an error occurs while performing a transaction.

Author:
Copyright (c) 1999-2000 by BEA Systems, Inc. All Rights Reserved.

Constructor Index

 o TellerException()
Constructs exceptions without a specified string.
 o TellerException(Exception)
Constructs the appropriate exception from the message of the specified exception.
 o TellerException(String)
Constructs the appropriate exception with the specified string.

Constructors

 o TellerException
 public TellerException()
Constructs exceptions without a specified string.

 o TellerException
 public TellerException(String message)
Constructs the appropriate exception with the specified string.

Parameters:
message - Exception message
 o TellerException
 public TellerException(Exception e)
Constructs the appropriate exception from the message of the specified exception.

Parameters:
message - String Exception e

All Examples  All Cluster Examples  This Example  This Package