mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-17 17:15:31 +08:00
21 lines
469 B
Java
21 lines
469 B
Java
|
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;
|
||
|
}
|
||
|
|
||
|
}
|