# =========================================================
# =========== Python OOP - Bank Account Project ===========
# =========================================================
# Custom exception for handling balance-related issues.
class BalanceException(Exception):
pass
# Define the BankAccount class.
class BankAccount:
# Constant Values
min_balance = 200
min_transaction = 20
max_transaction = 100000
def __init__(self, acc_name, initial_amount):
# Valida