summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/NoTopLevelError.java
blob: 4810ab8a1b8a2b59f4fefb757e2dbfc8c65692c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package f00f.net.irc.martyr.errors;

import f00f.net.irc.martyr.InCommand;

/**
 * Code: 413 ERR_NOTOPLEVEL
 * <mask> :No toplevel domain specified
 * 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 NoTopLevelError extends GenericError
{
    private String mask;
    private String errorMessage;

    public NoTopLevelError()
    {
    }

    public NoTopLevelError(String mask, String errorMessage)
    {
        this.mask = mask;
        this.errorMessage = errorMessage;
    }

    public String getIrcIdentifier()
    {
        return "413";
    }

    public InCommand parse( String prefix, String identifier, String params )
    {
        return new NoTopLevelError(getParameter(params, 1), getParameter(params, 2));
    }

    public String getMask()
    {
        return mask;
    }

    public String getErrorMessage()
    {
        return errorMessage;
    }

}