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

import com.earth2me.essentials.Util;

public class NoLoanPermittedException extends Exception
{

	public NoLoanPermittedException()
	{
		super(Util.i18n("negativeBalanceError"));
	}
	
}