blob: fba1e656826db1c7735136aefdea044a24148dcf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013-2020 LAAS-CNRS (www.laas.fr)
* 7 Colonel Roche 31077 Toulouse - France
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Initial Contributors:
* Thierry Monteil : Project manager, technical co-manager
* Mahdi Ben Alaya : Technical co-manager
* Samir Medjiah : Technical co-manager
* Khalil Drira : Strategy expert
* Guillaume Garzone : Developer
* François Aïssaoui : Developer
*
* New contributors :
*******************************************************************************/
package org.eclipse.om2m.commons.exceptions;
/**
* Used to handle a not permitted attribute that has been provided to
* the CSE.
*
*/
public class NotPermittedAttrException extends BadRequestException {
private static final long serialVersionUID = 7326350383451396608L;
public NotPermittedAttrException() {
super();
}
public NotPermittedAttrException(String message){
super(message);
}
public NotPermittedAttrException(String message, Throwable cause){
super(message, cause);
}
}