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

com.github.menglim.sutils.exceptions.BackendErrorException Maven / Gradle / Ivy

There is a newer version: 1.2.16
Show newest version
package com.github.menglim.sutils.exceptions;

public class BackendErrorException extends RuntimeException {

    private String errorMessage;

    public BackendErrorException(String errorMessage) {
        this.errorMessage = errorMessage;
    }

    public String getErrorMessage() {
        return this.errorMessage;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy