summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java
deleted file mode 100644
index 4810ab8a1..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Code: 413 ERR_NOTOPLEVEL
- * <mask> :No toplevel domain specified
- * 412 - 414 are returned by PRIVMSG to indicate that the message wasn't delivered for some reason.
- * ERR_NOTOPLEVEL and ERR_WILDTOPLEVEL are errors that are returned when an invalid use of
- * "PRIVMSG $<server>" or "PRIVMSG #<host>" is attempted.
- */
-public class NoTopLevelError extends GenericError
-{
- private String mask;
- private String errorMessage;
-
- public NoTopLevelError()
- {
- }
-
- public NoTopLevelError(String mask, String errorMessage)
- {
- this.mask = mask;
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "413";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new NoTopLevelError(getParameter(params, 1), getParameter(params, 2));
- }
-
- public String getMask()
- {
- return mask;
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-