Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Java_TP/src/fr/univ/lyon1/common/exception/ChatException.java

14 lines
336 B
Java

package fr.univ.lyon1.common.exception;
/**
* Main exception of the chat system for client and server communication
*/
public class ChatException extends Exception {
/**
* This exception need only a message
* @param message the message
*/
public ChatException(String message) {
super(message);
}
}