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

com.luoshu.open.id.exception.IdException Maven / Gradle / Ivy

There is a newer version: 0.32
Show newest version
package com.luoshu.open.id.exception;

public class IdException extends RuntimeException{

    public IdException() {
    }

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy