blob: a505e0bf2d0b09a62941f228b983f39d62a8942c [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.core.security;
/**
* Exception thrown if an error occurred while instantiating the singleton
* {@link SecuredAccess} service
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
@SuppressWarnings("serial")
public class AuthorizationServiceException extends SecuredAccessException {
/**
* Constructor
*/
public AuthorizationServiceException() {
super();
}
/**
* Constructor
*
* @param message
* the error message
*/
public AuthorizationServiceException(String message) {
super(message);
}
/**
* Constructor
*
* @param cause
* the Throwable object which has caused the triggering of this
* exception
*/
public AuthorizationServiceException(Throwable cause) {
super(cause);
}
/**
* Constructor
*
* @param message
* the error message
* @param cause
* the Throwable object which has caused the triggering of this
* exception
*/
public AuthorizationServiceException(String message, Throwable cause) {
super(message, cause);
}
}