summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/NoLoanPermittedException.java
blob: ff9059a99d830f0457f3fc1642e3e09cbc020d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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."));
	}
}