summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/user/CooldownException.java
blob: 08e1635225448b7b2df8b526fcb3cb3754134eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package net.ess3.user;


public class CooldownException extends Exception
{

	private static final long serialVersionUID = 913632836257457319L;

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

}