summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/NoLoanPermittedException.java
blob: 2f0a5a10147eddf9c9170ce99e84578c91492dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package net.ess3.api;

import static net.ess3.I18n._;


public class NoLoanPermittedException extends Exception
{
	/**
	 * Allow serialization of the NoLoanPermittedException exception
	 */
	private static final long serialVersionUID = 1897047051293914036L;

	/**
	 *
	 */
	public NoLoanPermittedException()
	{
		super(_("§4User is not allowed to have a negative balance."));
	}
}