remove unused exception and class

This commit is contained in:
Claudio Barril
2014-03-08 16:24:34 -03:00
parent 135c956406
commit de515c572c
2 changed files with 0 additions and 70 deletions

View File

@@ -1,20 +0,0 @@
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;
}
}