In Java, can a "catch" block catch exceptions of a subclass type before catching exceptions of a superclass type?

In Java, can a "catch" block catch exceptions of a subclass type before catching exceptions of a superclass type? Correct Answer Yes, a "catch" block can catch exceptions of a subclass type before a superclass type

Related Questions

If A is the superclass and B is the subclass, then subclass inherting the superclass can be represented as
If A is the superclass and B is the subclass, then subclass inheriting the superclass can be represented as _________
In Java, can a "catch" block catch exceptions of a superclass type?
In Java, can a "catch" block catch multiple exceptions?
In Java, can a subclass override a private method from its superclass?
In Java, can a subclass inherit constructors from its superclass?
In Java, can a subclass access private members (fields and methods) of its superclass?