/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package uk.co.md87.evetool.api.parser; /** * * @author chris */ public class ParserException extends Exception { public ParserException(String message, Throwable cause) { super(message, cause); } public ParserException(String message) { super(message); } }