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

io.github.jaylondev.swift.boot.test.exception.SwiftBootTestException Maven / Gradle / Ivy

The newest version!
package io.github.jaylondev.swift.boot.test.exception;

/**
 * @author jaylon 2023/8/7 22:58
 */
public class SwiftBootTestException extends RuntimeException {

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy