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

io.engineblock.core.UserException Maven / Gradle / Ivy

Go to download

Runtime artifact for engineblock; This module ties the core libraries, provided drivers, and API into a single executable jar

There is a newer version: 2.12.65
Show newest version
package io.engineblock.core;

/**
 * User exceptions are errors for which we know how to explain the cause to the user.
 * For these, we should not need to log or report stack traces to any channel, as
 * the cause of and thus the remedy for the error should be very obvious.
 */
public class UserException extends RuntimeException {
    public UserException(String exception) {
        super(exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy