mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17: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
|
public class EditionSessionExpiredException
|
||||||
extends ClientException
|
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)
|
public EditionSessionExpiredException(@NotNull String msg)
|
||||||
{
|
{
|
||||||
|
@ -20,9 +20,11 @@ package com.wisemapping.exceptions;
|
|||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
|
||||||
public class LockException
|
public class LockException
|
||||||
extends ClientException
|
extends ClientException
|
||||||
{
|
{
|
||||||
|
private static final String MSG_KEY = "MINDMAP_IS_LOCKED";
|
||||||
public LockException(@NotNull String message) {
|
public LockException(@NotNull String message) {
|
||||||
super(message,Severity.INFO);
|
super(message,Severity.INFO);
|
||||||
}
|
}
|
||||||
@ -30,6 +32,6 @@ public class LockException
|
|||||||
@NotNull
|
@NotNull
|
||||||
@Override
|
@Override
|
||||||
protected String getMsgBundleKey() {
|
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
|
public class MapCouldNotFoundException
|
||||||
extends ClientException
|
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)
|
public MapCouldNotFoundException(@NotNull String msg)
|
||||||
{
|
{
|
||||||
|
@ -23,7 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
public class MultipleSessionsOpenException
|
public class MultipleSessionsOpenException
|
||||||
extends ClientException
|
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)
|
public MultipleSessionsOpenException(@NotNull String techInfo)
|
||||||
{
|
{
|
||||||
|
@ -23,7 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
|
|
||||||
public class SessionExpiredException
|
public class SessionExpiredException
|
||||||
extends ClientException {
|
extends ClientException {
|
||||||
public static final String MSG_KEY = "MINDMAP_TIMESTAMP_OUTDATED";
|
private static final String MSG_KEY = "MINDMAP_TIMESTAMP_OUTDATED";
|
||||||
private User lastUpdater;
|
private User lastUpdater;
|
||||||
|
|
||||||
public SessionExpiredException(@NotNull String debugInfo, @NotNull 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
|
OPEN_OFFICE_EXPORT_FORMAT_DETAILS=Get your map as OpenOffice Write Document
|
||||||
MINDJET_EXPORT_FORMAT=(BETA) MindJet 8.x
|
MINDJET_EXPORT_FORMAT=(BETA) MindJet 8.x
|
||||||
MINDJET_EXPORT_FORMAT_DETAILS=Export your maps in MindJet 8.x format
|
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