All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jianggujin.http.core.JParseException Maven / Gradle / Ivy

package com.jianggujin.http.core;

/**
 * 解析异常
 * 
 * @author jianggujin
 *
 */
public class JParseException extends RuntimeException {
   private static final long serialVersionUID = 1L;

   public JParseException() {
      super();
   }

   public JParseException(String message) {
      super(message);
   }

   public JParseException(String message, Throwable cause) {
      super(message, cause);
   }

   public JParseException(Throwable cause) {
      super(cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy