-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventOne.java
65 lines (58 loc) · 1.6 KB
/
EventOne.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import java.util.Scanner;
class DailyTransactionLimitException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public String toString() {
return "Daily Limit Exceeded (25,000)";
}
}
class InsufficientAmountException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public String toString() {
return "Insufficient Balance";
}
}
class Test {
int balance;
public Test() {}
public Test(int initialBalance) {
balance = initialBalance;
}
void withdraw(int amountToWithdraw) throws DailyTransactionLimitException, InsufficientAmountException {
if(amountToWithdraw > 25000) {
throw new DailyTransactionLimitException();
}
else if(amountToWithdraw > balance) {
throw new InsufficientAmountException();
}
else {
balance = balance - amountToWithdraw;
System.out.println("WITHDRAWAL SUCCESSFUL !\n" + "Amount withdrawn : " + amountToWithdraw + "\nCurrent Balance : " + balance);
}
}
}
public class EventOne {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter initial balance : ");
int initialBalanceEnteredByUser = in.nextInt();
Test atm = new Test(initialBalanceEnteredByUser);
System.out.print("Enter amount to withdraw (daily limit 25K) : ");
int amountToWithdraw = in.nextInt();
try {
atm.withdraw(amountToWithdraw);
} catch (DailyTransactionLimitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InsufficientAmountException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
in.close();
}
}