package com.bao.lc.common.exception; public class ParseException extends Exception { /** * */ private static final long serialVersionUID = -7156526086666085455L; public ParseException() { super(); } public ParseException(String str) { super(str); } }