
com.github.mkopylec.charon.exceptions.CharonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of charon-spring-boot-starter Show documentation
Show all versions of charon-spring-boot-starter Show documentation
Reverse proxy implementation in form of Spring Boot starter.
The newest version!
package com.github.mkopylec.charon.exceptions;
public class CharonException extends RuntimeException {
public CharonException(String message) {
super(message);
}
public CharonException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy