java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.xml.crypto.NoSuchMechanismException
- All Implemented Interfaces:
- Serializable
public class NoSuchMechanismException extends RuntimeException
This exception is thrown when a particular XML mechanism is requested but
 is not available in the environment.
 
A NoSuchMechanismException can contain a cause: another
 throwable that caused this NoSuchMechanismException to get
 thrown.
- Since:
- 1.6
- See Also:
- XMLSignatureFactory.getInstance,- KeyInfoFactory.getInstance, Serialized Form
- 
Constructor SummaryConstructors Constructor Description NoSuchMechanismException()Constructs a newNoSuchMechanismExceptionwithnullas its detail message.NoSuchMechanismException(String message)Constructs a newNoSuchMechanismExceptionwith the specified detail message.NoSuchMechanismException(String message, Throwable cause)Constructs a newNoSuchMechanismExceptionwith the specified detail message and cause.NoSuchMechanismException(Throwable cause)Constructs a newNoSuchMechanismExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).
- 
Method SummaryModifier and Type Method Description ThrowablegetCause()Returns the cause of thisNoSuchMechanismExceptionornullif the cause is nonexistent or unknown.voidprintStackTrace()Prints thisNoSuchMechanismException, its backtrace and the cause's backtrace to the standard error stream.voidprintStackTrace(PrintStream s)Prints thisNoSuchMechanismException, its backtrace and the cause's backtrace to the specified print stream.voidprintStackTrace(PrintWriter s)Prints thisNoSuchMechanismException, its backtrace and the cause's backtrace to the specified print writer.Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
- 
Constructor Details- 
NoSuchMechanismExceptionpublic NoSuchMechanismException()Constructs a newNoSuchMechanismExceptionwithnullas its detail message.
- 
NoSuchMechanismExceptionConstructs a newNoSuchMechanismExceptionwith the specified detail message.- Parameters:
- message- the detail message
 
- 
NoSuchMechanismExceptionConstructs a newNoSuchMechanismExceptionwith the specified detail message and cause.Note that the detail message associated with causeis not automatically incorporated in this exception's detail message.- Parameters:
- message- the detail message
- cause- the cause (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
- 
NoSuchMechanismExceptionConstructs a newNoSuchMechanismExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).- Parameters:
- cause- the cause (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
- 
- 
Method Details- 
getCauseReturns the cause of thisNoSuchMechanismExceptionornullif the cause is nonexistent or unknown. (The cause is the throwable that caused thisNoSuchMechanismExceptionto get thrown.)
- 
printStackTracepublic void printStackTrace()Prints thisNoSuchMechanismException, its backtrace and the cause's backtrace to the standard error stream.- Overrides:
- printStackTracein class- Throwable
 
- 
printStackTracePrints thisNoSuchMechanismException, its backtrace and the cause's backtrace to the specified print stream.- Overrides:
- printStackTracein class- Throwable
- Parameters:
- s-- PrintStreamto use for output
 
- 
printStackTracePrints thisNoSuchMechanismException, its backtrace and the cause's backtrace to the specified print writer.- Overrides:
- printStackTracein class- Throwable
- Parameters:
- s-- PrintWriterto use for output
 
 
-