summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTextToSendError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTextToSendError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTextToSendError.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTextToSendError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTextToSendError.java
deleted file mode 100644
index 6e0176295..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTextToSendError.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Code: 412 ERR_NOTEXTTOSEND
- * :No text to send
- * 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 NoTextToSendError extends GenericError
-{
- private String errorMessage;
-
- public NoTextToSendError()
- {
- }
-
- public NoTextToSendError(String errorMessage)
- {
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "412";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new NoTextToSendError(getParameter(params, 1));
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-