mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-21 14:58:29 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
18 lines
499 B
Java
18 lines
499 B
Java
package de.javawi.jstun.attribute;
|
|
|
|
import de.javawi.jstun.attribute.MessageAttributeInterface.MessageAttributeType;
|
|
|
|
public class UnknownMessageAttributeException extends MessageAttributeParsingException {
|
|
private static final long serialVersionUID = 5375193544145543299L;
|
|
|
|
private MessageAttributeType type;
|
|
|
|
public UnknownMessageAttributeException(String mesg, MessageAttributeType type) {
|
|
super(mesg);
|
|
this.type = type;
|
|
}
|
|
|
|
public MessageAttributeType getType() {
|
|
return type;
|
|
}
|
|
}
|