Add more debug.

This commit is contained in:
Paulo Gustavo Veiga
2012-11-13 13:44:33 -03:00
parent 00fd168489
commit 71762ff629
4 changed files with 38 additions and 11 deletions

View File

@@ -28,4 +28,8 @@ abstract public class ClientException extends WiseMappingException {
public Severity getSeverity() {
return this.severity;
}
public String getTechInfo() {
return getMessage();
}
}

View File

@@ -25,9 +25,9 @@ public class MultipleSessionsOpenException
{
public static final String MSG_KEY = "MINDMAP_OUTDATED_BY_YOU";
public MultipleSessionsOpenException(@NotNull String msg)
public MultipleSessionsOpenException(@NotNull String techInfo)
{
super(msg,Severity.INFO);
super(techInfo,Severity.INFO);
}
@NotNull