| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception javax.sdp.SdpException javax.sdp.SdpFactoryException
SdpFactoryException | public class SdpFactoryException extends SdpException (Code) | | The SdpFactoryException encapsulates the information thrown when a problem
with configuration with the
SdpFactory exists.
Please refer to IETF RFC 2327 for a description of SDP.
author: deruelle version: 1.0 |
Method Summary | |
public Exception | getException() Return the actual exception (if any) that caused this exception to be thrown. | public String | getMessage() Return the message (if any) for this error. |
SdpFactoryException | public SdpFactoryException()(Code) | | Creates new SdpFactoryException
|
SdpFactoryException | public SdpFactoryException(String msg)(Code) | | Create a new FactoryConfigurationException with the String specified as
an error message.
Parameters: msg - msg - the detail message |
SdpFactoryException | public SdpFactoryException(Exception ex)(Code) | | Create a new FactoryConfigurationException with a given Exception base
cause of the error.
Parameters: ex - ex - the "chained" exception |
SdpFactoryException | public SdpFactoryException(String msg, Exception ex)(Code) | | Create a new FactoryConfigurationException with the given Exception base
cause and detail message.
Parameters: msg - msg - the detail message Parameters: ex - ex - the "chained" exception |
getException | public Exception getException()(Code) | | Return the actual exception (if any) that caused this exception to be thrown.
the encapsulated exception, or null if there is none |
getMessage | public String getMessage()(Code) | | Return the message (if any) for this error. If there is no message for
the exception and there is an encapsulated
exception then the message of that exception will be returned.
the error message |
|
|
|