// Represents an abnormal bank account event 	
	
public class NegativeAmountException extends Exception {	
	// NegativeAmountException(): creates exception with message s 	
	public NegativeAmountException(String s) {	
		super(s);	
	}	
}	
