summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/TooManyTargetsError.java
blob: 594fe4e41caf820666bec60c6a6a8a2dae9ee565 (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
package f00f.net.irc.martyr.errors;

import f00f.net.irc.martyr.InCommand;

/**
 * Code: 407 ERR_TOOMANYTARGETS
 * <target> :Duplicate recipients.  No message delivered
 * Returned to a client which is attempting to send a PRIVMSG/NOTICE using the user@host destination
 * format and for a user@host which has several occurrences.
 */
public class TooManyTargetsError extends GenericError
{
    private String dest;
    private String errorMessage;

    public TooManyTargetsError()
    {
    }

    public TooManyTargetsError(String dest, String errorMessage)
    {
        this.dest = dest;
        this.errorMessage = errorMessage;
    }

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

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

    public String getDest()
    {
        return dest;
    }

    public String getErrorMessage()
    {
        return errorMessage;
    }

}