Insert custom constraintViolationException

Signed-off-by: Melanie Retter <melanie.retter@bosch-si.com>
This commit is contained in:
Melanie Retter
2016-08-24 13:07:37 +02:00
parent 3ac8dc93a3
commit 679f465db1
3 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,33 @@
/**
* Copyright (c) 2015 Bosch Software Innovations GmbH and others.
*
* 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
*/
package org.eclipse.hawkbit.repository.exception;
import org.eclipse.hawkbit.exception.AbstractServerRtException;
import org.eclipse.hawkbit.exception.SpServerError;
/**
* the {@link ConstraintViolationException} is thrown when an entity is
* tried to be saved which has constraint violations
*
*/
public class ConstraintViolationException extends AbstractServerRtException {
private static final long serialVersionUID = 1L;
/**
* Constructor for {@link ConstraintViolationException}
*
* @param message
* the message to be displayed as exception message
*/
public ConstraintViolationException(final String message) {
super(message, SpServerError.SP_REPO_CONSTRAINT_VIOLATION);
}
}