I am about done with the assignment but it won't run, why?
I think it has something to do with how I named it, it used to be named "Account" but I changed it to "Exception".

Account




ExceptionExceptionExceptionNegativeNumberException Exceptionsclass NegativeBalanceException : Exception
{ }
class Account
{
private decimal _balance = 0;
public decimal Balance {
get => _balance
set {
if (value < 0) throw new NegativeBalanceException(),
_balance = value;
}
}
}