Constructors Summary |
---|
public SdpException()Creates new SdpException
super();
|
public SdpException(String message)Constructs a new SdpException with the message you specify.
super(message);
|
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.
super(rootCause.getMessage()+";"+message);
|
public SdpException(Throwable rootCause)Constructs a new SdpException as a result of a system exception and uses
the localized system exception message.
super(rootCause.getMessage());
|