Top Description Fields Constructors Methods
javax.xml.crypto

public Class MarshalException

extends Exception
Class Inheritance
Imports
java.io.PrintStream, .PrintWriter, javax.xml.crypto.dsig.Manifest, .XMLSignature, .XMLSignatureFactory, javax.xml.crypto.dsig.keyinfo.KeyInfo, .KeyInfoFactory

Indicates an exceptional condition that occurred during the XML marshalling or unmarshalling process.

A MarshalException can contain a cause: another throwable that caused this MarshalException to get thrown.

Authors
Sean Mullan, JSR 105 Expert Group
Since
1.6
See Also
XMLSignature#sign(XMLSignContext), XMLSignatureFactory#unmarshalXMLSignature(XMLValidateContext)

Field Summary

Modifier and TypeField and Description
private Throwable
cause

Hides java.lang.Throwable.cause.

The throwable that caused this exception to get thrown, or null if this exception was not caused by another throwable or if the causative throwable is unknown.
private static final long

Constructor Summary

AccessConstructor and Description
public
MarshalException()

Constructs a new MarshalException with null as its detail message.

public
MarshalException(String
the detail message
message
)

Constructs a new MarshalException with the specified detail message.

public
MarshalException(String
the detail message
message
,
Throwable
the cause (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
cause
)

Constructs a new MarshalException with the specified detail message and cause.

public
MarshalException(Throwable
the cause (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
cause
)

Constructs a new MarshalException with the specified cause and a detail message of (cause==null ?

Method Summary

Modifier and TypeMethod and Description
public Throwable

Returns:

the cause of this MarshalException or null if the cause is nonexistent or unknown.
getCause
()

Overrides java.lang.Throwable.getCause.

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

public void
printStackTrace()

Overrides java.lang.Throwable.printStackTrace.

Prints this MarshalException, its backtrace and the cause's backtrace to the standard error stream.

public void
printStackTrace(PrintStream
PrintStream to use for output
s
)

Overrides java.lang.Throwable.printStackTrace.

Prints this MarshalException, its backtrace and the cause's backtrace to the specified print stream.

public void
printStackTrace(PrintWriter
PrintWriter to use for output
s
)

Overrides java.lang.Throwable.printStackTrace.

Prints this MarshalException, its backtrace and the cause's backtrace to the specified print writer.

Field Detail

causeback to summary
private Throwable cause

Hides java.lang.Throwable.cause.

The throwable that caused this exception to get thrown, or null if this exception was not caused by another throwable or if the causative throwable is unknown.

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.lang.Exception.serialVersionUID.

Constructor Detail

MarshalExceptionback to summary
public MarshalException()

Constructs a new MarshalException with null as its detail message.

MarshalExceptionback to summary
public MarshalException(String message)

Constructs a new MarshalException with the specified detail message.

Parameters
message:String

the detail message

MarshalExceptionback to summary
public MarshalException(String message, Throwable cause)

Constructs a new MarshalException with the specified detail message and cause.

Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.

Parameters
message:String

the detail message

cause:Throwable

the cause (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

MarshalExceptionback to summary
public MarshalException(Throwable cause)

Constructs a new MarshalException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters
cause:Throwable

the cause (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

Method Detail

getCauseback to summary
public Throwable getCause()

Overrides java.lang.Throwable.getCause.

Returns the cause of this MarshalException or null if the cause is nonexistent or unknown. (The cause is the throwable that caused this MarshalException to get thrown.)

Returns:Throwable

the cause of this MarshalException or null if the cause is nonexistent or unknown.

printStackTraceback to summary
public void printStackTrace()

Overrides java.lang.Throwable.printStackTrace.

Prints this MarshalException, its backtrace and the cause's backtrace to the standard error stream.

printStackTraceback to summary
public void printStackTrace(PrintStream s)

Overrides java.lang.Throwable.printStackTrace.

Prints this MarshalException, its backtrace and the cause's backtrace to the specified print stream.

Parameters
s:PrintStream

PrintStream to use for output

printStackTraceback to summary
public void printStackTrace(PrintWriter s)

Overrides java.lang.Throwable.printStackTrace.

Prints this MarshalException, its backtrace and the cause's backtrace to the specified print writer.

Parameters
s:PrintWriter

PrintWriter to use for output