summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/errors/ChannelInviteOnlyError.java
blob: af6322b619ee6bc0569dbb1a811c8bc751dd8cc6 (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
/*
 * ChannelInviteOnlyError.java
 *
 *   Copyright (C) 2000, 2001, 2002, 2003 Ben Damm
 *
 *   This library is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU Lesser General Public
 *   License as published by the Free Software Foundation; either
 *   version 2.1 of the License, or (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Lesser General Public License for more details.
 *
 *   See: http://www.fsf.org/copyleft/lesser.txt
 */
package f00f.net.irc.martyr.errors;

import f00f.net.irc.martyr.InCommand;
/**
 * Code: 473 ERR_INVITEONLYCHAN
 * <channel> :Cannot join channel (+i)
 * @version $Id: ChannelInviteOnlyError.java 85 2007-08-02 18:26:59Z jadestorm $
 * TODO: Should we rename this to InviteOnlyChanError to match others?
 */
public class ChannelInviteOnlyError extends GenericJoinError
{
	public ChannelInviteOnlyError()
	{
		// This one's for registering.
	}

	protected ChannelInviteOnlyError( String chan, String comment )
	{
		super(chan, comment);
	}

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

	protected InCommand create(String channel, String comment)
	{
		return new ChannelInviteOnlyError( channel, comment );
	}
}