com.geotab.http.exception.GroupRelationViolatedException Maven / Gradle / Ivy
/*
*
* 2020 Copyright (C) Geotab Inc. All rights reserved.
*/
package com.geotab.http.exception;
/**
* Exception with information about the grouped linked entities that hold a relation preventing
* removal.
*/
public class GroupRelationViolatedException extends JsonRpcErrorDataException {
/**
* Initializes a new instance.
*
* @param innerException The inner exception.
*/
public GroupRelationViolatedException(Exception innerException) {
super("Cannot remove group with existing relations", innerException);
}
}