Unsupported library that attempts to punch holes through NAT
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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