/* * Copyright 2015 Workday, Inc. * * This software is available under the MIT license. * Please see the LICENSE.txt file in this project. */ package com.workday.autoparse.xml.parser; /** * @author nathan.taylor * @since 2013-9-18 */ public class ParseException extends Exception { private static final long serialVersionUID = 8365381194111942965L; public ParseException() { super(); } public ParseException(String message) { super(message); } public ParseException(String message, Throwable cause) { super(message, cause); } public ParseException(Throwable cause) { super(cause); } }