
org.sklsft.commons.rest.security.exception.ContextConflictException Maven / Gradle / Ivy
The newest version!
package org.sklsft.commons.rest.security.exception;
/**
*
* This exception is thrown if you try to bind a security context if there is already one
*
* @author Nicolas Thibault, Abdessalam El Jai, Alexandre Rupp
*
*/
public class ContextConflictException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ContextConflictException(String message) {
super(message);
}
public ContextConflictException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy