View Javadoc
1   /*
2   MutableException
3   format = (default)^.*Exception$|^.*Error$|^.*Throwable$
4   extendedClassNameFormat = (default)^.*Exception$|^.*Error$|^.*Throwable$
5   
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.design.mutableexception;
10  
11  import java.util.concurrent.atomic.AtomicReference;
12  
13  /**
14   * Convenience class for holding an {@link Exception} in a thread-safe way  // NPE is not expected
15   */
16  public class InputMutableExceptionClassExtendsGenericClass
17          extends AtomicReference<Exception> {
18  
19      private static final long serialVersionUID = 1L;
20  
21  }