summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/SummonDisabledError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/SummonDisabledError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/SummonDisabledError.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/SummonDisabledError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/SummonDisabledError.java
deleted file mode 100644
index 0f495fcf4..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/SummonDisabledError.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Code: 445 ERR_SUMMONDISABLED
- * :SUMMON has been disabled
- * Returned as a response to the SUMMON command. Must be returned by any server
- * which does not implement it.
- */
-public class SummonDisabledError extends GenericError
-{
- private String errorMessage;
-
- public SummonDisabledError()
- {
- }
-
- public SummonDisabledError(String errorMessage)
- {
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "445";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new SummonDisabledError(getParameter(params, 1));
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-