Unsupported library that attempts to punch holes through NAT
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }