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

io.katharsis.errorhandling.exception.KatharsisException Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.errorhandling.exception;

/**
 * General type for exceptions, which can be thrown during Katharsis request processing.
 */
public abstract class KatharsisException extends RuntimeException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy