summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/commands/UnknownCommand.java
blob: 6ecd4bc4db86b77a4019436f9ecb65bc5a143212 (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
package f00f.net.irc.martyr.commands;

import f00f.net.irc.martyr.InCommand;
import f00f.net.irc.martyr.State;


/**
 * Some unknown command, for which there is no factory.  This is a
 * special case command, created by IRCConnection if it can't find a
 * proper command object.
 */
public class UnknownCommand extends AbstractInCommand
{

    public State getState()
    {
        return State.UNKNOWN;
    }

    /**
     * Never parsed.
     */
    public InCommand parse( String prefix, String identifier, String params )
    {
        throw new UnsupportedOperationException("UnknownCommand does no parsing.");
    }

    /**
     * Unknown, so we don't know what the identifier is ahead of time.
     */
    public String getIrcIdentifier()
    {
        return null;
    }

}