summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/highlightUsagesHandler/ThrowsReference.java
blob: 952b85596e427530617080280571f3d2cbb0c6ba (plain)
1
2
3
4
5
class Calculator {
    public void printError(Exception detail, int line, String file) <caret>throws Exception {
        throw detail;
    }
}