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

org.sklsft.commons.rest.security.exception.NoBoundContextException Maven / Gradle / Ivy

The newest version!
package org.sklsft.commons.rest.security.exception;

/**
 * If you try to access a security context and there is no one
 * 
 * @author Nicolas Thibault, Abdessalam El Jai, Alexandre Rupp
 *
 */
public class NoBoundContextException extends RuntimeException {

	private static final long serialVersionUID = 1L;
	
	public NoBoundContextException(String message) {
		super(message);

	}

	public NoBoundContextException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy