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

com.firefly.utils.exception.CommonRuntimeException Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.utils.exception;

/**
 * Firefly common module runtime exception
 * @author Pengtao Qiu
 */
public class CommonRuntimeException extends RuntimeException {

    public CommonRuntimeException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy