All Examples  All Cluster Examples  This Example  This Package

Class examples.cluster.ejb.account.AccountException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----examples.cluster.ejb.account.AccountException

public class AccountException
extends Exception
This class is used with the WebLogic EJBean container-managed example package. AccountException is thrown if the caller attempts to withdraw more than the balance of the account.

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

Constructor Index

 o AccountException()
Constructs exceptions without a specified string.
 o AccountException(String)
Constructs the appropriate exception with the specified string.

Constructors

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

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

Parameters:
message - String Exception message

All Examples  All Cluster Examples  This Example  This Package