summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/NoLoanPermittedException.java
blob: 970630af6df3d674caa9b1d8a719f805eed61cc4 (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(_("negativeBalanceError"));
	}
}