You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IRCParserException.java 512B

123456789101112131415161718192021222324252627
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.dmdirc.parser.irc;
  6. /**
  7. * IRC Parser Exception!
  8. *
  9. * @author shane
  10. */
  11. class IRCParserException extends Exception {
  12. /** Version of this class. */
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * Create a new IRCParserException
  16. *
  17. * @param message Reason for exception
  18. */
  19. public IRCParserException(final String message) {
  20. super(message);
  21. }
  22. }