What is the statement that can be used in Java to represent a missing value of a variable. for instance I want to write a code:
if (a>=23) income = pay_rate;
Use throws:
if (a>=23) income = pay_rate; else throw new IllegalArgumentException("income is missing");