summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/YoureBannedCreepError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/YoureBannedCreepError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/YoureBannedCreepError.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/YoureBannedCreepError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/YoureBannedCreepError.java
deleted file mode 100644
index 1cea503dc..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/YoureBannedCreepError.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Code: 465 ERR_YOUREBANNEDCREEP
- * :You are banned from this server
- * Returned after an attempt to connect and register yourself with a server which has been setup to
- * explicitly deny connections to you.
- */
-public class YoureBannedCreepError extends GenericError
-{
- private String errorMessage;
-
- public YoureBannedCreepError()
- {
- }
-
- public YoureBannedCreepError(String errorMessage)
- {
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "465";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new YoureBannedCreepError(getParameter(params, 1));
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-