summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java
deleted file mode 100644
index 594fe4e41..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java
+++ /dev/null
@@ -1,47 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Code: 407 ERR_TOOMANYTARGETS
- * <target> :Duplicate recipients. No message delivered
- * Returned to a client which is attempting to send a PRIVMSG/NOTICE using the user@host destination
- * format and for a user@host which has several occurrences.
- */
-public class TooManyTargetsError extends GenericError
-{
- private String dest;
- private String errorMessage;
-
- public TooManyTargetsError()
- {
- }
-
- public TooManyTargetsError(String dest, String errorMessage)
- {
- this.dest = dest;
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "407";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new TooManyTargetsError(getParameter(params, 1), getParameter(params, 2));
- }
-
- public String getDest()
- {
- return dest;
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-