io.engineblock.core.UserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eb-core Show documentation
Show all versions of eb-core Show documentation
Runtime artifact for engineblock;
This module ties the core libraries, provided drivers, and API into a single executable jar
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);
}
}