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

io.github.hcelebi.greenhopper.exception.GreenhopperRunTimeException Maven / Gradle / Ivy

package io.github.hcelebi.greenhopper.exception;

import lombok.AllArgsConstructor;
import lombok.Getter;

import java.io.Serial;

@Getter
@AllArgsConstructor
public class GreenhopperRunTimeException extends RuntimeException {
    @Serial
    private static final long serialVersionUID = -3829641624015437540L;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy