Unsupported library that attempts to punch holes through NAT
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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