public class

PendingException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ sun.security.util.PendingException

Class Overview

An exception that denotes that an operation is pending. Currently used by LoginContext.

Summary

Public Constructors
PendingException()
Constructs a PendingException with no detail message.
PendingException(String msg)
Constructs a PendingException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public PendingException ()

Constructs a PendingException with no detail message. A detail message is a String that describes this particular exception.

public PendingException (String msg)

Constructs a PendingException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters
msg the detail message.