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

org.devlive.sdk.common.exception.DefaultException Maven / Gradle / Ivy

package org.devlive.sdk.common.exception;

import lombok.Getter;

public class DefaultException
        extends RuntimeException
{
    @Getter
    private final String message;

    public DefaultException(String message)
    {
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy