That’s not what they’re for.

An exception should represent unexpected behavior. It should be something like an error condition, a fault, or something seriously broken.
Use other structures for standard flow control. Try the “if” statement, or a “case” statement, or polymorphism.
Exceptions act like GOTO statements and make spaghetti code that is hard to follow. Don’t make life hard on yourself. Don’t make things difficult for the people who come after you and have to maintain your code. Avoid using exceptions for flow control.