aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/design/InputMutableExceptionClassExtendsGenericClass.java
blob: 3694762363aff0f28401ebe87326b908ee3762eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.puppycrawl.tools.checkstyle.checks.design;

import java.util.concurrent.atomic.AtomicReference;

/**
 * Convenience class for holding an {@link Exception} in a thread-safe way
 */
public class InputMutableExceptionClassExtendsGenericClass extends AtomicReference<Exception> { // NPE is not expected

    private static final long serialVersionUID = 1L;

}