Unsupported library that attempts to punch holes through NAT
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.

UnknownMessageAttributeException.java 499B

123456789101112131415161718
  1. package de.javawi.jstun.attribute;
  2. import de.javawi.jstun.attribute.MessageAttributeInterface.MessageAttributeType;
  3. public class UnknownMessageAttributeException extends MessageAttributeParsingException {
  4. private static final long serialVersionUID = 5375193544145543299L;
  5. private MessageAttributeType type;
  6. public UnknownMessageAttributeException(String mesg, MessageAttributeType type) {
  7. super(mesg);
  8. this.type = type;
  9. }
  10. public MessageAttributeType getType() {
  11. return type;
  12. }
  13. }