mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Fix missing message.
This commit is contained in:
parent
65283a0edc
commit
31fb342ef1
@ -23,7 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
public class EditionSessionExpiredException
|
||||
extends ClientException
|
||||
{
|
||||
public static final String MSG_KEY = "MINDMAP_TIMESTAMP_OUTDATED";
|
||||
private static final String MSG_KEY = "MINDMAP_TIMESTAMP_OUTDATED";
|
||||
|
||||
public EditionSessionExpiredException(@NotNull String msg)
|
||||
{
|
||||
|
@ -20,9 +20,11 @@ package com.wisemapping.exceptions;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
|
||||
public class LockException
|
||||
extends ClientException
|
||||
{
|
||||
private static final String MSG_KEY = "MINDMAP_IS_LOCKED";
|
||||
public LockException(@NotNull String message) {
|
||||
super(message,Severity.INFO);
|
||||
}
|
||||
@ -30,6 +32,6 @@ public class LockException
|
||||
@NotNull
|
||||
@Override
|
||||
protected String getMsgBundleKey() {
|
||||
return null; //To change body of implemented methods use File | Settings | File Templates.
|
||||
return MSG_KEY;
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
public class MapCouldNotFoundException
|
||||
extends ClientException
|
||||
{
|
||||
public static final String MSG_KEY = "MAP_CAN_NOT_BE_FOUND";
|
||||
private static final String MSG_KEY = "MAP_CAN_NOT_BE_FOUND";
|
||||
|
||||
public MapCouldNotFoundException(@NotNull String msg)
|
||||
{
|
||||
|
@ -23,7 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
public class MultipleSessionsOpenException
|
||||
extends ClientException
|
||||
{
|
||||
public static final String MSG_KEY = "MINDMAP_OUTDATED_BY_YOU";
|
||||
private static final String MSG_KEY = "MINDMAP_OUTDATED_BY_YOU";
|
||||
|
||||
public MultipleSessionsOpenException(@NotNull String techInfo)
|
||||
{
|
||||
|
@ -23,7 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class SessionExpiredException
|
||||
extends ClientException {
|
||||
public static final String MSG_KEY = "MINDMAP_TIMESTAMP_OUTDATED";
|
||||
private static final String MSG_KEY = "MINDMAP_TIMESTAMP_OUTDATED";
|
||||
private User lastUpdater;
|
||||
|
||||
public SessionExpiredException(@NotNull String debugInfo, @NotNull User lastUpdater) {
|
||||
|
@ -266,6 +266,7 @@ TXT_EXPORT_FORMAT_DETAILS=Get your map as a plan text format
|
||||
OPEN_OFFICE_EXPORT_FORMAT_DETAILS=Get your map as OpenOffice Write Document
|
||||
MINDJET_EXPORT_FORMAT=(BETA) MindJet 8.x
|
||||
MINDJET_EXPORT_FORMAT_DETAILS=Export your maps in MindJet 8.x format
|
||||
MINDMAP_IS_LOCKED=Mindmap is locked for edition.
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user