1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 08:23:11 +00:00

Several improvements

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-21 20:19:13 -03:00
parent 6efce6615f
commit ab38e7d5ba
125 changed files with 969 additions and 205 deletions

View File

@@ -110,16 +110,32 @@ public interface ChatService extends Service {
// TODO party chat
/**
* Exception thrown when the target of an private chat is not found
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public class TargetNotFoundChatServiceException extends
L2ChatServiceException {
private static final long serialVersionUID = 1L;
}
/**
* Exception thrown if the player is trying to chat with itself.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public class CannotChatToSelfChatServiceException extends
L2ChatServiceException {
private static final long serialVersionUID = 1L;
}
/**
* Exception thrown if the player trying to send a message is currently
* banned.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public class ChatBanActiveChatServiceException extends
L2ChatServiceException {
private static final long serialVersionUID = 1L;