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.

MessageHeaderParsingException.java 549B

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.header;
  12. public class MessageHeaderParsingException extends MessageHeaderException {
  13. private static final long serialVersionUID = 3544393617029607478L;
  14. public MessageHeaderParsingException(String mesg) {
  15. super(mesg);
  16. }
  17. }