This commit is contained in:
Erik C. Thauvin 2019-04-19 21:02:54 -07:00
parent 8f408d1f46
commit 8e8e530181
10 changed files with 84 additions and 60 deletions

View file

@ -44,7 +44,7 @@ import java.util.regex.Pattern;
* @created 2019-04-07
* @since 1.0
*/
class ModuleException extends Exception {
public class ModuleException extends Exception {
private static final long serialVersionUID = -3036774290621088107L;
private final String debugMessage;
private final Pattern urlPattern = Pattern.compile("(https?://\\S+)(\\?\\S+)");

View file

@ -1,5 +1,5 @@
/*
* PrivateMessage.java
* NoticeMessage.java
*
* Copyright (c) 2004-2019, Erik C. Thauvin (erik@thauvin.net)
* All rights reserved.
@ -53,7 +53,7 @@ public class NoticeMessage extends Message {
/**
* Create a new notice.
*
* @param message The ntoice's message.
* @param message The notice's message.
* @param color The color.
*/
public NoticeMessage(final String message, final String color) {