Desktop tool for browsing account info from EVE-Online
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.

ParserException.java 397B

12345678910111213141516171819202122
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package uk.co.md87.evetool.api.parser;
  6. /**
  7. *
  8. * @author chris
  9. */
  10. public class ParserException extends Exception {
  11. public ParserException(String message, Throwable cause) {
  12. super(message, cause);
  13. }
  14. public ParserException(String message) {
  15. super(message);
  16. }
  17. }