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

io.jexxa.jlegmed.core.FailFastException Maven / Gradle / Ivy

There is a newer version: 3.5.2
Show newest version
package io.jexxa.jlegmed.core;

import java.io.Serial;

public class FailFastException extends RuntimeException {
    @Serial
    private static final long serialVersionUID = 1L;
    public FailFastException(String message)
    {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy