All Examples  This Package  All Security Examples
  Class examples.security.delegatingrealm.DelegatingException
java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----weblogic.utils.NestedRuntimeException
                                   |
                                   +----examples.security.delegatingrealm.DelegatingException
  -  public class DelegatingException
  -  extends NestedRuntimeException
Thrown if an error occurs in the Delegating realm code.  It is an
 unchecked exception because the underlying realm interfaces do not
 provide for checked exceptions to indicate errors.
  -  Author:
  
-  Copyright (c) 1998-2000 by BEA Systems, Inc. All Rights Reserved.
   
  -   DelegatingException() DelegatingException()
-   Construct an exception with no detail message and no nested
 Throwable.
  
-   DelegatingException(String) DelegatingException(String)
-   Construct an exception with the given detail message and no
 nested Throwable.
  
-   DelegatingException(String, Throwable) DelegatingException(String, Throwable)
-   Construct an exception with the given detail message and nested
 Throwable.
  
-   DelegatingException(Throwable) DelegatingException(Throwable)
-   Construct an exception with no detail message and the given
 nested Throwable.
   
 DelegatingException
DelegatingException
 public DelegatingException()
  -  Construct an exception with no detail message and no nested
 Throwable.
 
 DelegatingException
DelegatingException
 public DelegatingException(String msg)
  -  Construct an exception with the given detail message and no
 nested Throwable.
   
- 
    -  Parameters:
    
-  msg - detail message
  
 
 DelegatingException
DelegatingException
 public DelegatingException(Throwable nested)
  -  Construct an exception with no detail message and the given
 nested Throwable.
   
- 
    -  Parameters:
    
-  nested - nested Throwable
  
 
 DelegatingException
DelegatingException
 public DelegatingException(String msg,
                            Throwable nested)
  -  Construct an exception with the given detail message and nested
 Throwable.
   
- 
    -  Parameters:
    
-  msg - detail message
    -  nested - nested Throwable
  
 
All Examples  This Package  All Security Examples