mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-05 11:56:29 +08:00
20 lines
425 B
Java
20 lines
425 B
Java
package com.wisemapping.exceptions;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class LabelCouldNotFoundException extends ClientException {
|
|
|
|
private static final String MSG_KEY = "LABEL_CAN_NOT_BE_FOUND";
|
|
|
|
public LabelCouldNotFoundException(@NotNull String msg)
|
|
{
|
|
super(msg,Severity.FATAL);
|
|
}
|
|
|
|
@NotNull
|
|
@Override
|
|
protected String getMsgBundleKey() {
|
|
return MSG_KEY;
|
|
}
|
|
}
|