Package org.eclipse.ecf.core.security
Class UnsupportedCallbackException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- org.eclipse.ecf.core.security.UnsupportedCallbackException
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class UnsupportedCallbackException extends Exception - See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description UnsupportedCallbackException(Callback callback)Constructs aUnsupportedCallbackExceptionwith no detail message.UnsupportedCallbackException(Callback callback, String msg)Constructs a UnsupportedCallbackException with the specified detail message.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description CallbackgetCallback()Get the unrecognizedCallback.- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
UnsupportedCallbackExceptionpublic UnsupportedCallbackException(Callback callback) Constructs aUnsupportedCallbackExceptionwith no detail message.- Parameters:
- callback- the unrecognized- Callback.
 
 - 
UnsupportedCallbackExceptionpublic UnsupportedCallbackException(Callback callback, String msg) Constructs a UnsupportedCallbackException with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
- callback- the unrecognized- Callback.
- msg- the detail message.
 
 
- 
 - 
Method Detail- 
getCallbackpublic Callback getCallback() Get the unrecognizedCallback.- Returns:
- the unrecognized Callback.
 
 
- 
 
-