blob: 036236051afc33648891bdf8f49750bcf7c53b89 [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;
/**
* Exception used when a member of a group is not found
* during its validation.
*
*
*/
public class MemberNonFoundException extends BadRequestException {
/**
*
*/
private static final long serialVersionUID = 599962012717246758L;
public MemberNonFoundException(String message, Throwable cause){
super(message, cause);
}
/**
* Main constructor with the uri of the not found member
* @param memberUri
*/
public MemberNonFoundException(String message){
super(message);
}
}