aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/Input_1379666.java
blob: c7ba96097d8b9350996fe1cd7c8312f10984871c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.puppycrawl.tools.checkstyle.checks.javadoc;

/**
 * comment.
 */
public class Input_1379666 {
    /**
     * @throws BadStringFormat some text
     */
    public void ok() throws BadStringFormat {
    }

    /**
     * @throws Input_1379666.BadStringFormat some text
     */
    public void error1()
        throws com.puppycrawl.tools.checkstyle.checks.javadoc.Input_1379666.BadStringFormat {
    }

    /**
     * Some comment.
     * @throws com.puppycrawl.tools.checkstyle.checks.javadoc.Input_1379666.BadStringFormat some text
     */
    public void error2() throws Input_1379666.BadStringFormat {
    }

    /**
     * Some exception class.
     */
    public static class BadStringFormat extends Exception {
        /**
         * Some comment.
         * @param s string.
         */
        BadStringFormat(String s) {
            super(s);
        }
    }
}