CSC1109_Tutorials/Week8_Lab/InsufficientFundsException....

12 lines
258 B
Java

package Week8_Lab;
public class InsufficientFundsException extends Throwable{
private double amount;
public InsufficientFundsException(double amount){
this.amount = amount;
}
public double getAmount(){
return amount;
}
}