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

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

There is a newer version: 3.0.2
Show newest version
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