|
Novell exteNd Web Services SDK API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
javax.xml.soap.SOAPException
javax.xml.messaging.JAXMException
An exception that signals that a JAXM exception has occurred. A
JAXMException
object may contain a String
that gives the reason for the exception, an embedded
Throwable
object, or both. This class provides methods
for retrieving reason messages and for retrieving the embedded
Throwable
object.
Typical reasons for throwing a JAXMException
object are problems such as not being able to send a message and
not being able to get a connection with the provider. Reasons for
embedding a Throwable
object include problems such as
an input/output errors or a parsing problem, such as an error
parsing a header.
Constructor Summary | |
JAXMException()
Constructs a JAXMException object with no
reason or embedded Throwable object. |
|
JAXMException(String reason)
Constructs a JAXMException object with the given
String as the reason for the exception being thrown. |
|
JAXMException(String reason,
Throwable cause)
Constructs a JAXMException object with the given
String as the reason for the exception being thrown
and the given Throwable object as an embedded
exception. |
|
JAXMException(Throwable cause)
Constructs a JAXMException object initialized
with the given Throwable object. |
Methods inherited from class javax.xml.soap.SOAPException |
getCause, getMessage, initCause |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public JAXMException()
JAXMException
object with no
reason or embedded Throwable
object.
public JAXMException(String reason)
JAXMException
object with the given
String
as the reason for the exception being thrown.
reason
- a String
giving a description of what
caused this exceptionpublic JAXMException(String reason, Throwable cause)
JAXMException
object with the given
String
as the reason for the exception being thrown
and the given Throwable
object as an embedded
exception.
reason
- a String
giving a description of what
caused this exceptioncause
- a Throwable
object that is to
be embedded in this JAXMException
objectpublic JAXMException(Throwable cause)
JAXMException
object initialized
with the given Throwable
object.
cause
- a Throwable
object that is to
be embedded in this JAXMException
object
|
Novell exteNd Web Services SDK API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |