This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.security.sasl
exception SaslException

java.lang.Object extended by java.lang.Throwable extended by java.lang.Exception extended by java.io.IOException extended by javax.security.sasl.SaslException
All Implemented Interfaces:
Serializable

public exception SaslException
extends IOException

This class represents an error that has occurred when using SASL.


Constructor Summary

          Constructs a new instance of SaslException.

          Constructs a new instance of SaslException with a detailed message.

          Constructs a new instance of SaslException with a detailed message and a root exception.
 
Method Summary
 Throwable

          Returns the cause of this throwable or null if the cause is nonexistent or unknown.
 Throwable

          Initializes the cause of this throwable to the specified value.
 String

          Returns the string representation of this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SaslException

public SaslException()
Constructs a new instance of SaslException. The root exception and the detailed message are null.


SaslException

public SaslException(String detail)
Constructs a new instance of SaslException with a detailed message. The root exception is null.

Parameters:
detail - A possibly null string containing details of the exception.

SaslException

public SaslException(String detail,
                     Throwable ex)
Constructs a new instance of SaslException with a detailed message and a root exception. For example, a SaslException might result from a problem with the callback handler, which might throw a NoSuchCallbackException if it does not support the requested callback, or throw an IOException if it had problems obtaining data for the callback. The SaslException's root exception would be then be the exception thrown by the callback handler.

Parameters:
detail - A possibly null string containing details of the exception.
ex - A possibly null root exception that caused this exception.
Method Detail

getCause

public Throwable getCause()
Overrides:
getCause in class Throwable

initCause

public Throwable initCause(Throwable cause)
Overrides:
initCause in class Throwable
Parameters:
cause

toString

public String toString()
Returns the string representation of this exception. The string representation contains this exception's class name, its detailed messsage, and if it has a root exception, the string representation of the root exception. This string representation is meant for debugging and not meant to be interpreted programmatically.

Overrides:
toString in class Throwable
Returns:
The non-null string representation of this exception.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.