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

com.qingcha.verifier.core.VerifierException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.qingcha.verifier.core;

/**
 * @author qiqiang
 */
public class VerifierException extends RuntimeException{
    public VerifierException() {
    }

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

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

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

    public VerifierException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy