api for unlink mindmaps

This commit is contained in:
Claudio Barril
2014-02-02 04:09:28 -03:00
parent 734463d233
commit 8db7f5015f
14 changed files with 269 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.wisemapping.exceptions;
import org.jetbrains.annotations.NotNull;
public class LabelMindmapRelationshipNotFoundException extends ClientException {
private static final String MSG_KEY = "LABEL_MINDMAP_RELATION_NOT_BE_FOUND";
public LabelMindmapRelationshipNotFoundException(@NotNull String msg)
{
super(msg,Severity.WARNING);
}
@NotNull
@Override
protected String getMsgBundleKey() {
return MSG_KEY;
}
}