summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/LoadTooHighError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/LoadTooHighError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/LoadTooHighError.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/LoadTooHighError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/LoadTooHighError.java
deleted file mode 100644
index d6d4411b0..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/LoadTooHighError.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-import f00f.net.irc.martyr.util.FullNick;
-
-public class LoadTooHighError extends GenericError
-{
- private FullNick nick;
- private String command;
- private String errorMessage;
-
- public LoadTooHighError()
- {
- }
-
- public LoadTooHighError(FullNick nick, String command, String errorMessage)
- {
- this.nick = nick;
- this.command = command;
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "263";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new LoadTooHighError(new FullNick(getParameter(params, 1)), getParameter(params, 2), getParameter(params, 3));
- }
-
- public FullNick getNick()
- {
- return nick;
- }
-
- public String getCommand()
- {
- return command;
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-