summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/FileErrorError.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/errors/FileErrorError.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/errors/FileErrorError.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/FileErrorError.java b/EssentialsUpdate/src/f00f/net/irc/martyr/errors/FileErrorError.java
deleted file mode 100644
index a41205c7f..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/errors/FileErrorError.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package f00f.net.irc.martyr.errors;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Code: 424 ERR_FILEERROR
- * :File error doing <file op> on <file>
- * Generic error message used to report a failed file operation during the processing of a message.
- */
-public class FileErrorError extends GenericError
-{
- private String errorMessage;
-
- public FileErrorError()
- {
- }
-
- public FileErrorError(String errorMessage)
- {
- this.errorMessage = errorMessage;
- }
-
- public String getIrcIdentifier()
- {
- return "424";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new FileErrorError(getParameter(params, 1));
- }
-
- public String getErrorMessage()
- {
- return errorMessage;
- }
-
-}
-