You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
350 B

package javax.sip.header;
import java.text.ParseException;
import javax.sip.address.URI;
public interface ErrorInfoHeader extends Header, Parameters {
String NAME = "Error-Info";
URI getErrorInfo();
void setErrorInfo(URI errorInfo);
String getErrorMessage();
void setErrorMessage(String errorMessage) throws ParseException;
}