summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/user/CooldownException.java
blob: b986a5552de46f1d2b8964ac76955781364835e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.earth2me.essentials.user;


public class CooldownException extends Exception
{

	public CooldownException(String timeLeft)
	{
		super(timeLeft);
	}
	
}