This commit is contained in:
Paulo Gustavo Veiga
2022-10-21 18:37:33 -07:00
parent 2981fe79f7
commit 7c060ee192
2 changed files with 5 additions and 5 deletions

View File

@@ -20,13 +20,13 @@ package com.wisemapping.exceptions;
import org.jetbrains.annotations.NotNull;
public class OnwerCollabCannotChangeException
public class OwnerCannotChangeException
extends ClientException
{
private static final String MSG_KEY = "OWNER_ROLE_CAN_NOT_BE_CHANGED";
public OnwerCollabCannotChangeException(@NotNull String email)
public OwnerCannotChangeException(@NotNull String email)
{
super("Collab email can not be change. " + email + " is the the owner.",Severity.WARNING);
}