Unsupported library that attempts to punch holes through NAT
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MessageAttributeParsingException.java 562B

1234567891011121314151617181920
  1. /*
  2. * This file is part of JSTUN.
  3. *
  4. * Copyright (c) 2005 Thomas King <king@t-king.de> - All rights
  5. * reserved.
  6. *
  7. * This software is licensed under either the GNU Public License (GPL),
  8. * or the Apache 2.0 license. Copies of both license agreements are
  9. * included in this distribution.
  10. */
  11. package de.javawi.jstun.attribute;
  12. public class MessageAttributeParsingException extends MessageAttributeException {
  13. private static final long serialVersionUID = 3258409534426263605L;
  14. public MessageAttributeParsingException(String mesg) {
  15. super(mesg);
  16. }
  17. }