Package org.silverpeas.core.chat
Class ChatServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.silverpeas.kernel.SilverpeasRuntimeException
-
- org.silverpeas.core.chat.ChatServerException
-
- All Implemented Interfaces:
Serializable
public class ChatServerException extends org.silverpeas.kernel.SilverpeasRuntimeException
Thrown when an error need external intervention to be fixed- Author:
- remipassmoilesel
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
RELATIONSHIP_ALREADY_EXIST
Relationship already existstatic String
RELATIONSHIP_CREATION_FAIL
Error while creating relationshipstatic String
RELATIONSHIP_DELETION_FAIL
Error while deleting relationshipstatic String
USER_ACCESS_FAIL
Error while accessing the profile of the user.static String
USER_CREATION_FAIL
Error while creating userstatic String
USER_DELETION_FAIL
Error while deleting user
-
Constructor Summary
Constructors Constructor Description ChatServerException(String message)
ChatServerException(String message, Throwable cause)
ChatServerException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
USER_CREATION_FAIL
public static final String USER_CREATION_FAIL
Error while creating user- See Also:
- Constant Field Values
-
USER_DELETION_FAIL
public static final String USER_DELETION_FAIL
Error while deleting user- See Also:
- Constant Field Values
-
USER_ACCESS_FAIL
public static final String USER_ACCESS_FAIL
Error while accessing the profile of the user.- See Also:
- Constant Field Values
-
RELATIONSHIP_ALREADY_EXIST
public static final String RELATIONSHIP_ALREADY_EXIST
Relationship already exist- See Also:
- Constant Field Values
-
RELATIONSHIP_CREATION_FAIL
public static final String RELATIONSHIP_CREATION_FAIL
Error while creating relationship- See Also:
- Constant Field Values
-
RELATIONSHIP_DELETION_FAIL
public static final String RELATIONSHIP_DELETION_FAIL
Error while deleting relationship- See Also:
- Constant Field Values
-
-