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

cn.dreampie.common.exception.ValidateException Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package cn.dreampie.common.exception;

/**
 * Created by wangrenhui on 14-5-6.
 */
public class ValidateException extends RuntimeException {
  public ValidateException() {
    super();
  }

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

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

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

  protected ValidateException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy