io.katharsis.errorhandling.exception.KatharsisMatchingException Maven / Gradle / Ivy
package io.katharsis.errorhandling.exception;
/**
* Exceptions which derive from this class should be considered as part of the method matching mechanism, that is they
* shouldn't be considered as an error that must be sent in response.
*
* Exceptions of this kind should be logged and the request processing should be continued.
*/
public abstract class KatharsisMatchingException extends KatharsisException {
protected KatharsisMatchingException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy