aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/design/InputMutableException.java
blob: 7b0febc2ad912a528262224f639299a0a03e3a7d (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
40
41
42
43
44
45
46
47
48
package com.puppycrawl.tools.checkstyle.checks.design;

public class InputMutableException {
    public class FooException extends Exception {
        private final int finalErrorCode;
        private int errorCode = 1;

        public FooException() {
            finalErrorCode = 1;
        }

        public class FooExceptionThisIsNot extends RuntimeException {
            private final int finalErrorCode;
            private int errorCode = 1;
            /** constructor */
            public FooExceptionThisIsNot() {
                finalErrorCode = 1;
            }
        }
    }

    public class BarError extends Throwable {
        private int errorCode;
    }

    public class BazDoesNotExtendError {
        private int errorCode;
    }

    public class CustomProblem extends ThreadDeath {
        private int errorCode;

        public class CustomFailure extends ThreadDeath {
            private int errorCode;
            public void someMethod() {
                if(true) {
                    final int i = 0;
                }
            } 
        }
    }

    class CustomException extends java.lang.Exception {}

    class CustomMutableException extends java.lang.Exception {
        int errorCode;
    }
}