| java.lang.Object java.lang.Throwable java.lang.Exception gov.nist.javax.sdp.SdpException
All known Subclasses: gov.nist.javax.sdp.SdpParseException,
SdpException | public class SdpException extends Exception (Code) | | The SdpException defines a general exception for the SDP classes
to throw when they encounter a difficulty.
version: 1.0 |
Constructor Summary | |
public | SdpException() | public | SdpException(String message) Constructs a new SdpException with the message you specify. | public | SdpException(String message, Throwable rootCause) Constructs a new SdpException when the Codelet needs to throw an
exception and include a message about another exception that interfered
with its normal operation. | public | SdpException(Throwable rootCause) Constructs a new SdpException as a result of a system exception and uses
the localized system exception message. |
SdpException | public SdpException()(Code) | | Creates new SdpException
|
SdpException | public SdpException(String message)(Code) | | Constructs a new SdpException with the message you specify.
Parameters: message - a String specifying the text of the exception message |
SdpException | public SdpException(String message, Throwable rootCause)(Code) | | Constructs a new SdpException when the Codelet needs to throw an
exception and include a message about another exception that interfered
with its normal operation.
Parameters: message - a String specifying the text of the exception message Parameters: rootCause - the Throwable exception that interfered with the Codelet's normal operation, making this Codelet exception necessary |
SdpException | public SdpException(Throwable rootCause)(Code) | | Constructs a new SdpException as a result of a system exception and uses
the localized system exception message.
Parameters: rootCause - the system exception that makes this SdpException necessary |
|
|